mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2025-12-10 20:02:54 +00:00
36 lines
795 B
TypeScript
36 lines
795 B
TypeScript
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;
|
|
};
|
|
clean: boolean;
|
|
};
|