UNPKG

@nx/storybook

Version:

The Nx Plugin for Storybook contains executors and generators for allowing your workspace to use the powerful Storybook integration testing & documenting capabilities.

16 lines 701 B
import { CreateDependencies, CreateNodesV2 } from '@nx/devkit'; export interface StorybookPluginOptions { buildStorybookTargetName?: string; serveStorybookTargetName?: string; staticStorybookTargetName?: string; testStorybookTargetName?: string; buildDepsTargetName?: string; watchDepsTargetName?: string; } /** * @deprecated The 'createDependencies' function is now a no-op. This functionality is included in 'createNodesV2'. */ export declare const createDependencies: CreateDependencies; export declare const createNodes: CreateNodesV2<StorybookPluginOptions>; export declare const createNodesV2: CreateNodesV2<StorybookPluginOptions>; //# sourceMappingURL=plugin.d.ts.map