@zhsz/cool-design-dv
Version:
17 lines (16 loc) • 346 B
TypeScript
export declare const baseConfig: {
color: string;
fill: string;
textColor: string;
colors: string[];
};
export declare function useConfig(config?: {
[key: string]: any;
}): {
settings: import("vue").ComputedRef<{
color: string;
fill: string;
textColor: string;
colors: string[];
}>;
};