UNPKG

@nova-ui/bits

Version:

SolarWinds Nova Framework

51 lines (50 loc) 1.07 kB
export interface Schema { /** * Specifies if the component is an entry component of declaring module. */ entryComponent?: boolean; /** * Specifies if declaring module exports the component. */ export?: boolean; /** * Flag to indicate if a directory is created. */ flat?: boolean; /** * Applies lintFix after schematic is generated */ lintFix?: boolean; /** * Allows specification of the declaring module. */ module?: string; /** * The name of the component. */ name: string; /** * The path to create the component. */ path?: string; /** * The prefix to apply to generated selectors. */ prefix?: string; /** * The name of the project. */ project?: string; /** * The selector to use for the component. */ selector?: string; /** * Flag to skip the module import. */ skipImport?: boolean; /** * Specifies if a spec file is generated. */ spec?: boolean; }