UNPKG

weapp-tailwindcss

Version:

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

18 lines (17 loc) 440 B
import type { IJsHandlerOptions } from '../../types/index.js'; import type { SourceAnalysis } from '../babel.js'; export interface ModuleState { filename: string; source: string; analysis: SourceAnalysis; } export interface QueueItem { filename: string; depth: number; } export interface ModuleGraphEntry { filename: string; source: string; analysis: SourceAnalysis; handlerOptions: IJsHandlerOptions; }