12 lines
219 B
TypeScript
Executable file
12 lines
219 B
TypeScript
Executable file
export interface Schema {
|
|
path?: string;
|
|
project?: string;
|
|
name: string;
|
|
prefix?: string;
|
|
styleext?: string;
|
|
spec?: boolean;
|
|
flat?: boolean;
|
|
selector?: string;
|
|
module?: string;
|
|
routePath?: string;
|
|
}
|