You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
868 B
39 lines
868 B
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;
|
|
};
|
|
|