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
import type { Type } from "../types";
export declare const config: {
    type: Type;
    reqUrl: string;
    demo: boolean;
    nameTag: boolean;
    eps: {
        enable: boolean;
        api: string;
        dist: string;
        mapping: ({
            custom: ({ propertyName, type }: {
                propertyName: string;
                type: string;
            }) => null;
            type?: undefined;
            test?: undefined;
        } | {
            type: string;
            test: string[];
            custom?: undefined;
        })[];
    };
    svg: {
        skipNames: string[];
    };
    tailwind: {
        enable: boolean;
        remUnit: number;
        remPrecision: number;
        rpxRatio: number;
        darkTextClass: string;
    };
    uniapp: {
        isPlugin: boolean;
    };
    clean: boolean;
    utsPlatform: string;
};