This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/flow-typed/globals.js

17 lines
377 B
JavaScript
Raw Normal View History

2017-05-12 00:23:56 +00:00
// @flow
2017-11-10 23:24:29 +00:00
declare var process: {
exit: (code?: number) => void,
cwd: () => string,
argv: Array<string>,
on: (event: string, listener: Function) => void,
once: (event: string, listener: Function) => void,
off: (event: string, listener: Function) => void,
2017-11-10 23:24:29 +00:00
env: {
[string]: string,
},
stdout: Stream,
stderr: Stream,
2017-11-10 23:24:29 +00:00
};
declare var EDITOR_VERSION: string;