@ng-zen/cli
Version:
A CLI tool for generating customizable, modern Angular UI components using schematics.
17 lines (14 loc) • 308 B
text/typescript
import { GeneratorSchemaBase } from '../../types';
export type ComponentType =
| 'avatar'
| 'button'
| 'checkbox'
| 'divider'
| 'icon'
| 'input'
| 'skeleton'
| 'switch'
| 'textarea';
export interface ComponentGeneratorSchema extends GeneratorSchemaBase {
components: ComponentType[];
}