push
This commit is contained in:
34
lib/saas/view/system/application.d.ts
vendored
Normal file
34
lib/saas/view/system/application.d.ts
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
|
||||
|
||||
export interface menusClass {
|
||||
name: string;
|
||||
path: string;
|
||||
meta: meta;
|
||||
children: Array<menusClass>;
|
||||
component?: any;
|
||||
ischoice: boolean;
|
||||
}
|
||||
|
||||
export interface sourceClass {
|
||||
code: string;
|
||||
label: string;
|
||||
parentCode: meta;
|
||||
menus: Array<menusClass>;
|
||||
name?: any;
|
||||
sort: number;
|
||||
type: string;
|
||||
}
|
||||
|
||||
export class meta {
|
||||
title: string | undefined;
|
||||
}
|
||||
export interface tagsClass {
|
||||
findIndex(arg0: (x: any) => boolean): any;
|
||||
path: string;
|
||||
name: string;
|
||||
title: string;
|
||||
}
|
||||
export type emitEvents = {
|
||||
leftMenuTrigger: boolean;
|
||||
bar?: number;
|
||||
};
|
||||
Reference in New Issue
Block a user