export interface Schema { /** * When true, creates the new files at the top level of the current project. */ flat?: boolean; /** * The declaring NgModule. */ module?: string; /** * The name of the service. */ name: string; /** * The path to create the service. */ path?: string; /** * The prefix to apply to the generated component selector. */ prefix?: string; /** * The name of the project. */ project?: string; /** * The HTML selector to use for this component. */ selector?: string; /** * The file extension or preprocessor to use for style files. */ style?: Style; } /** * The file extension or preprocessor to use for style files. */ export declare enum Style { Css = "css", Less = "less", Sass = "sass", Scss = "scss", Styl = "styl" }