aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/typings.d.ts
blob: b58fa33df4f61c32238e41e5ce63bb1284edd57c (plain)
1
2
3
4
5
6
7
8
9
10
/* SystemJS module definition */
declare var module: NodeModule;
interface NodeModule {
  id: string;
}

declare module '*.json' {
  const value: any;
  export default value;
}