Files
eibons ce999372ae init
2025-08-15 21:37:29 +08:00

10 lines
253 B
TypeScript

import type { Plugin } from "vite";
/**
* 转换类名中的特殊字符为安全字符
*/
export declare function toSafeClass(className: string): string;
/**
* Tailwind 类名转换插件
*/
export declare function tailwindPlugin(): Plugin<any>[];