Summary: This diff moves send intern request from the browser to the server. The reason to make this change is that making such requests from a browser environment causes CORS restrictions to kick in. Reviewed By: nikoant Differential Revision: D32835449 fbshipit-source-id: e8e92e51ca963aa50b3c859bb61c2381171e85ae
30 lines
688 B
TypeScript
30 lines
688 B
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
declare const __REVISION__: string | undefined;
|
|
declare const __VERSION__: string;
|
|
declare const electronRequire: {
|
|
(name: string): any;
|
|
resolve: (module: string) => string;
|
|
cache: {[module: string]: any};
|
|
};
|
|
|
|
// For Electron
|
|
declare module NodeJS {
|
|
interface Global {
|
|
__REVISION__: string | undefined;
|
|
__VERSION__: string;
|
|
electronRequire: {
|
|
(name: string): any;
|
|
resolve: (module: string) => string;
|
|
cache: {[module: string]: any};
|
|
};
|
|
}
|
|
}
|