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.

14 lines (13 loc) 488 B
import { Tree } from '@nx/devkit'; import { Linter, LinterType } from '@nx/eslint'; export interface CypressConfigureSchema { name: string; js?: boolean; directory?: string; linter: Linter | LinterType; standaloneConfig?: boolean; ciTargetName?: string; skipFormat?: boolean; } export declare function cypressProjectGenerator(tree: Tree, schema: CypressConfigureSchema): Promise<import("@nx/devkit").GeneratorCallback>; export default cypressProjectGenerator;