storybook/addons/centered/angular.d.ts
2019-07-10 00:48:53 +02:00

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;
}