@nx/next
Version:
11 lines (10 loc) • 354 B
TypeScript
import { Tree } from '@nx/devkit';
import type { SupportedStyles } from '@nx/react';
interface Schema {
path: string;
name?: string;
style: SupportedStyles;
skipFormat?: boolean;
}
export declare function componentGenerator(host: Tree, options: Schema): Promise<import("@nx/devkit").GeneratorCallback>;
export default componentGenerator;