wangzhibo
6 天以前 7bd866831780abcf5a59c4cbb7d1be456eea7c99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
declare module "virtual:ctx" {
    const ctx: {
        serviceLang: string;
        modules: string[];
    };
 
    export { ctx };
}
 
declare module "virtual:eps" {
    const eps: {
        isUpdate: boolean;
        list: {
            prefix: string;
            api: {
                method: string;
                path: string;
                summary: string;
                dts: {
                    [key: string]: string;
                };
                [key: string]: any;
            }[];
            namespace: string;
            name: string;
            module: string;
            columns: {
                comment: string;
                nullable: boolean;
                propertyName: string;
                type: string;
                [key: string]: any;
            }[];
            [key: string]: any;
        }[];
        service: any;
    };
 
    export { eps };
}
 
declare module "virtual:demo";
declare module "virtual:svg-register";
 
declare module "virtual:svg-icons" {
    const svgIcons: string[];
    export { svgIcons };
}