mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
34 lines
956 B
TypeScript
34 lines
956 B
TypeScript
import { NgModuleMetadata, ICollection } from './dist/client/preview/angular/types';
|
|
export { moduleMetadata } from './dist/client/preview/angular/decorators';
|
|
|
|
export interface IStorybookStory {
|
|
name: string;
|
|
render: () => any;
|
|
}
|
|
|
|
export interface IStoribookSection {
|
|
kind: string;
|
|
stories: IStorybookStory[];
|
|
}
|
|
|
|
export type IGetStory = () => {
|
|
props?: ICollection;
|
|
moduleMetadata?: Partial<NgModuleMetadata>;
|
|
component?: any;
|
|
template?: string;
|
|
};
|
|
|
|
export interface IApi {
|
|
kind: string;
|
|
addDecorator: (decorator: any) => IApi;
|
|
add: (storyName: string, getStory: IGetStory) => IApi;
|
|
}
|
|
|
|
declare module '@storybook/angular' {
|
|
export function storiesOf(kind: string, module: NodeModule): IApi;
|
|
export function setAddon(addon: any): void;
|
|
export function addDecorator(decorator: any): IApi;
|
|
export function configure(loaders: () => NodeRequire, module: NodeModule): void;
|
|
export function getStorybook(): IStoribookSection[];
|
|
}
|