fengxiang
2018-07-17 feda1a3904098d7b11ce0dea324e7b8db6228828
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;