mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
11 lines
177 B
TypeScript
11 lines
177 B
TypeScript
/* SystemJS module definition */
|
|
declare var module: NodeModule;
|
|
interface NodeModule {
|
|
id: string;
|
|
}
|
|
|
|
declare module '*.json' {
|
|
const value: any;
|
|
export default value;
|
|
}
|