mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:01:22 +08:00
- added ngModel property support & aded FormModule import to module, - added @types/lodash dependency, - added manual ngOnChanges hook call
32 lines
885 B
TypeScript
32 lines
885 B
TypeScript
import {NgModuleMetadata, ICollection} from './dist/client/preview/angular/types';
|
|
|
|
export interface IStorybookStory {
|
|
name: string,
|
|
render: () => any
|
|
}
|
|
|
|
export interface IStoribookSection {
|
|
kind: string,
|
|
stories: IStorybookStory[]
|
|
}
|
|
|
|
export type IGetStory = () => {
|
|
props?: ICollection;
|
|
moduleMetadata?: Partial<NgModuleMetadata>;
|
|
component: any
|
|
};
|
|
|
|
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[];
|
|
}
|