UNPKG

@ng-zen/cli

Version:

A CLI tool for generating customizable, modern Angular UI components using schematics.

8 lines (5 loc) 279 B
import { GeneratorSchemaBase } from '../../types'; export type ComponentType = 'avatar' | 'button' | 'checkbox' | 'divider' | 'input' | 'skeleton' | 'switch' | 'textarea'; export interface ComponentGeneratorSchema extends GeneratorSchemaBase { components: ComponentType[]; }