This work provides a foundation for a more pluggable authentication system such as the one outlined in #1317. closes #1317
10 lines
141 B
JavaScript
10 lines
141 B
JavaScript
// @flow
|
|
declare var process: {
|
|
exit: (code?: number) => void,
|
|
env: {
|
|
[string]: string,
|
|
},
|
|
};
|
|
|
|
declare var EDITOR_VERSION: string;
|