UNPKG

weapp-tailwindcss

Version:

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

15 lines (14 loc) 572 B
export declare const DEFAULT_VSCODE_ENTRY_OUTPUT = ".vscode/weapp-tailwindcss.intellisense.css"; export declare const DEFAULT_VSCODE_SOURCES: string[]; export interface GenerateVscodeEntryOptions { baseDir: string; cssEntry: string; output?: string | undefined; sources?: string[] | undefined; force?: boolean | undefined; } export interface GenerateVscodeEntryResult { outputPath: string; cssEntryPath: string; } export declare function generateVscodeIntellisenseEntry(options: GenerateVscodeEntryOptions): Promise<GenerateVscodeEntryResult>;