14 lines
271 B
TypeScript
Executable file
14 lines
271 B
TypeScript
Executable file
export interface Schema {
|
|
path?: string;
|
|
project?: string;
|
|
name: string;
|
|
prefix?: string;
|
|
styleext?: string;
|
|
spec?: boolean;
|
|
flat?: boolean;
|
|
selector?: string;
|
|
createModule?: boolean;
|
|
module?: string;
|
|
export?: boolean;
|
|
entryComponent?: boolean;
|
|
}
|