mirror of
https://github.com/clearml/clearml-web
synced 2025-02-11 23:43:50 +00:00
12 lines
182 B
TypeScript
12 lines
182 B
TypeScript
|
/* SystemJS module definition */
|
||
|
declare var module: NodeModule;
|
||
|
interface NodeModule {
|
||
|
id: string;
|
||
|
}
|
||
|
|
||
|
declare module '*.json' {
|
||
|
const value: any;
|
||
|
export default value;
|
||
|
}
|
||
|
|