imajin/node_modules/@angular-devkit/schematics-cli/schematic/schema.d.ts
2026-01-10 04:52:11 -08:00

11 lines
212 B
TypeScript
Executable file

export interface Schema {
/**
* Author for the new schematic.
*/
author?: string;
/**
* The package name for the new schematic.
*/
name: string;
[property: string]: any;
}