@nestjs/cli
Version:
Nest - modern, fast, powerful node.js web framework (@cli)
11 lines (10 loc) • 423 B
TypeScript
import { AbstractRunner } from '../runners';
import { SchematicOption } from './schematic.option';
export declare class AbstractCollection {
protected collection: string;
protected runner: AbstractRunner;
constructor(collection: string, runner: AbstractRunner);
execute(name: string, options: SchematicOption[], extraFlags?: string): Promise<void>;
private buildCommandLine;
private buildOptions;
}