UNPKG

weapp-tailwindcss

Version:

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

12 lines (11 loc) 599 B
import type { Plugin } from 'vite'; import type { CreateJsHandlerOptions, InternalUserDefinedOptions } from '../../types/index.js'; interface ViteServeJsTransformOptions { createHandlerOptions: (absoluteFilename: string, extra?: CreateJsHandlerOptions) => CreateJsHandlerOptions; getCommand: () => string | undefined; jsHandler: InternalUserDefinedOptions['jsHandler']; shouldTransform: () => boolean; transformRuntime: () => Promise<Set<string>> | Set<string>; } export declare function createViteServeJsTransformPlugin(options: ViteServeJsTransformOptions): Plugin; export {};