@angular-devkit/schematics-cli
Version:
Angular Schematics - CLI
25 lines (24 loc) • 491 B
TypeScript
export type Schema = {
/**
* Author for the new schematic.
*/
author?: string;
/**
* The package name for the new schematic.
*/
name: string;
/**
* The package manager used to install dependencies.
*/
packageManager?: PackageManager;
[property: string]: any;
};
/**
* The package manager used to install dependencies.
*/
export declare enum PackageManager {
Bun = "bun",
Npm = "npm",
Pnpm = "pnpm",
Yarn = "yarn"
}