You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
728 B
30 lines
728 B
/**
|
|
* Creates a new, generic interface definition in the given or default project.
|
|
*/
|
|
export interface Schema {
|
|
/**
|
|
* Apply lint fixes after generating the interface.
|
|
* @deprecated Use "ng lint --fix" directly instead.
|
|
*/
|
|
lintFix?: boolean;
|
|
/**
|
|
* The name of the interface.
|
|
*/
|
|
name: string;
|
|
/**
|
|
* The path at which to create the interface, relative to the workspace root.
|
|
*/
|
|
path?: string;
|
|
/**
|
|
* A prefix to apply to generated selectors.
|
|
*/
|
|
prefix?: string;
|
|
/**
|
|
* The name of the project.
|
|
*/
|
|
project?: string;
|
|
/**
|
|
* Adds a developer-defined type to the filename, in the format "name.type.ts".
|
|
*/
|
|
type?: string;
|
|
}
|