fengxiang
2018-03-27 8ba4860a97cbff9e50e7a6b5d2c05b97816755c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SystemJS module definition */
declare var module: NodeModule;
interface NodeModule {
  id: string;
}
 
interface WebpackRequire {
  <T>(path: string): T;
  (paths: string[], callback: (...modules: any[]) => void): void;
  ensure: (paths: string[], callback: (require: <T>(path: string) => T) => void) => void;
}
interface NodeRequire extends WebpackRequire {}
declare var require: NodeRequire;
 
// G2
declare var G2: any;
declare var Slider: any;
declare var Cloud: any;