@nx/storybook
Version:
14 lines (13 loc) • 488 B
TypeScript
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;