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
Tom Moor 83a61b87ed
feat: Normalized server logging (#2567)
* feat: Normalize logging

* Remove scattered console.error + Sentry.captureException

* Remove mention of debug

* cleanup dev output

* Edge cases, docs

* Refactor: Move logger, metrics, sentry under 'logging' folder.
Trying to reduce the amount of things under generic 'utils'

* cleanup, last few console calls
2021-09-14 18:04:35 -07:00

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;