@testplane/storybook
Version:
Testplane plugin that enables runtime screenshot storybook tests autogeneration
9 lines (8 loc) • 381 B
TypeScript
import type { StorybookRawStory } from "./index";
export declare const supportedStoryVersionV4: 4;
export interface StorybookIndexJson {
v: typeof supportedStoryVersionV4;
entries: Record<string, StorybookRawStory>;
}
export declare const storybookDataJsonPathV4 = "index.json";
export declare const extractStoriesV4: (dataJson: StorybookIndexJson) => StorybookRawStory[];