@nx/node
Version:
14 lines (13 loc) • 670 B
TypeScript
import { GeneratorCallback, Tree } from '@nx/devkit';
import { Schema } from './schema';
export interface NormalizedSchema extends Omit<Schema, 'useTsSolution'> {
appProjectRoot: string;
parsedTags: string[];
outputPath: string;
importPath: string;
isUsingTsSolutionConfig: boolean;
}
export declare function addLintingToApplication(tree: Tree, options: NormalizedSchema): Promise<GeneratorCallback>;
export declare function applicationGenerator(tree: Tree, schema: Schema): Promise<GeneratorCallback>;
export declare function applicationGeneratorInternal(tree: Tree, schema: Schema): Promise<GeneratorCallback>;
export default applicationGenerator;