@nx/next
Version:
6 lines (5 loc) • 356 B
TypeScript
import { type GeneratorCallback, type Tree } from '@nx/devkit';
import type { InitSchema } from './schema';
export declare function nextInitGenerator(tree: Tree, schema: InitSchema): Promise<GeneratorCallback>;
export declare function nextInitGeneratorInternal(host: Tree, schema: InitSchema): Promise<GeneratorCallback>;
export default nextInitGenerator;