UNPKG

weapp-tailwindcss

Version:

把 tailwindcss 原子化样式思想,带给小程序开发者们! bring tailwindcss to miniprogram developers!

11 lines (10 loc) 525 B
import type { TransformResult } from 'vite'; import type { ICustomAttributesEntities, JsHandler } from '../types/index.js'; interface TransformUVueOptions { customAttributesEntities?: ICustomAttributesEntities; disabledDefaultTemplateHandler?: boolean; enableComponentLocalStyle?: boolean; enablePageLocalStyle?: boolean; } export declare function transformUVue(code: string, id: string, jsHandler: JsHandler, runtimeSet?: Set<string>, options?: TransformUVueOptions): undefined | TransformResult; export {};