UNPKG

weapp-tailwindcss

Version:

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

8 lines (7 loc) 435 B
import type { GenerateCssByGeneratorOptions } from './types.js'; export interface ValidateCandidatesByGeneratorOptions extends Omit<GenerateCssByGeneratorOptions, 'runtime'> { candidates: Set<string>; generatedCssSources?: Iterable<string> | undefined; skipGenerateFallback?: boolean | undefined; } export declare function validateCandidatesByGenerator(options: ValidateCandidatesByGeneratorOptions): Promise<Set<string>>;