mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 14:01:16 +08:00
23 lines
499 B
TypeScript
23 lines
499 B
TypeScript
// tslint:disable-next-line:no-implicit-dependencies
|
|
export interface ICollection {
|
|
[p: string]: any;
|
|
}
|
|
|
|
export interface NgModuleMetadata {
|
|
declarations?: any[];
|
|
entryComponents?: any[];
|
|
imports?: any[];
|
|
schemas?: any[];
|
|
providers?: any[];
|
|
}
|
|
|
|
export interface IStory {
|
|
props?: ICollection;
|
|
moduleMetadata?: Partial<NgModuleMetadata>;
|
|
component?: any;
|
|
template?: string;
|
|
}
|
|
declare module '@storybook/addon-centered/angular' {
|
|
export function centered(story: IStory): IStory;
|
|
}
|