UNPKG

338 BTypeScriptView Raw
1export declare const CURRENT_SELECTION = ".";
2export declare const PRIMARY_STORY = "^";
3export declare type Component = any;
4export interface StoryData {
5 id?: string;
6 kind?: string;
7 name?: string;
8 parameters?: any;
9}
10export declare type DocsStoryProps = StoryData & {
11 expanded?: boolean;
12 withToolbar?: boolean;
13};