You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
222 B
7 lines
222 B
import type { Plugin } from "vite";
|
|
/**
|
|
* uniappX 入口,自动注入 Tailwind 类名转换插件
|
|
* @param options 配置项
|
|
* @returns Vite 插件数组
|
|
*/
|
|
export declare function uniappX(): Promise<Plugin<any>[]>;
|
|
|