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

// @flow
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,
env: {
[string]: string,
},
stdout: Stream,
stderr: Stream,
};
declare var EDITOR_VERSION: string;