8 lines
159 B
TypeScript
8 lines
159 B
TypeScript
export interface StorybookStoriesSchema {
|
|
project: string;
|
|
interactionTests?: boolean;
|
|
js?: boolean;
|
|
ignorePaths?: string[];
|
|
skipFormat?: boolean;
|
|
}
|