This commit is contained in:
eibons
2025-08-15 21:37:29 +08:00
parent 2d7f77a984
commit ce999372ae
183 changed files with 21567 additions and 5 deletions

View File

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