mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 23:16:45 +00:00
12 lines
190 B
TypeScript
12 lines
190 B
TypeScript
/* SystemJS module definition */
|
|
declare var nodeModule: NodeModule;
|
|
interface NodeModule {
|
|
id: string;
|
|
}
|
|
|
|
declare var window: Window;
|
|
interface Window {
|
|
process: any;
|
|
require: any;
|
|
}
|