weapp-tailwindcss
Version:
把 tailwindcss 原子化样式思想,带给小程序开发者们! bring tailwindcss to miniprogram developers!
6 lines (5 loc) • 357 B
TypeScript
import type { IJsHandlerOptions } from '../types/index.js';
type EscapeMap = NonNullable<IJsHandlerOptions['escapeMap']>;
export declare function getReplacementCacheStore(escapeMap?: EscapeMap): Map<string, string>;
export declare function getReplacement(candidate: string, escapeMap: EscapeMap | undefined, store?: Map<string, string>): string;
export {};