UNPKG

@testplane/storybook

Version:

Testplane plugin that enables runtime screenshot storybook tests autogeneration

9 lines (8 loc) 401 B
import type { StorybookRawStory } from "./index"; export declare const supportedStoryVersionV3: 3; export interface StorybookStoriesJson { v: typeof supportedStoryVersionV3; stories: Record<string, Omit<StorybookRawStory, "type">>; } export declare const storybookDataJsonPathV3 = "stories.json"; export declare const extractStoriesV3: (dataJson: StorybookStoriesJson) => StorybookRawStory[];