UNPKG

weapp-tailwindcss

Version:

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

12 lines (11 loc) 309 B
import type { NodePath } from '@babel/traverse'; import type { StringLiteral, TemplateElement } from '@babel/types'; export interface JsTokenMeta { ignore?: boolean; } export interface JsToken { start: number; end: number; value: string; path: NodePath<StringLiteral | TemplateElement>; }