mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2025-12-12 13:42:50 +00:00
10 lines
253 B
TypeScript
10 lines
253 B
TypeScript
import type { Plugin } from "vite";
|
|
/**
|
|
* 转换类名中的特殊字符为安全字符
|
|
*/
|
|
export declare function toSafeClass(className: string): string;
|
|
/**
|
|
* Tailwind 类名转换插件
|
|
*/
|
|
export declare function tailwindPlugin(): Plugin<any>[];
|