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