NET-Web-API-w-Angular/my-app/node_modules/@schematics/angular/interface/schema.d.ts

25 lines
564 B
TypeScript
Executable file

/**
* Creates a new, generic interface definition in the given project.
*/
export interface Schema {
/**
* 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;
}