mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
26 lines
540 B
TypeScript
26 lines
540 B
TypeScript
import { StoryFn } from "@storybook/addons";
|
|
|
|
export interface ICollection {
|
|
[p: string]: any;
|
|
}
|
|
|
|
export interface NgModuleMetadata {
|
|
declarations?: any[];
|
|
entryComponents?: any[];
|
|
imports?: any[];
|
|
schemas?: any[];
|
|
providers?: any[];
|
|
}
|
|
|
|
export interface IStory {
|
|
component?: any;
|
|
props?: ICollection;
|
|
propsMeta?: ICollection;
|
|
moduleMetadata?: NgModuleMetadata;
|
|
template?: string;
|
|
styles?: string[];
|
|
}
|
|
declare module '@storybook/addon-centered/angular' {
|
|
export function centered(story: StoryFn<IStory>): IStory;
|
|
}
|