weapp-tailwindcss
Version:
把 tailwindcss 原子化样式思想,带给小程序开发者们! bring tailwindcss to miniprogram developers!
11 lines (10 loc) • 412 B
TypeScript
export declare function wrapUserLayerComponentsCss(css: string): string;
export declare function extractMarkedUserLayerComponentsCss(css: string): {
layers: string[];
rest: string;
};
export declare function reorderMarkedUserLayerComponentsCss(css: string): string;
export declare function mergeMarkedUserLayerComponentsCss(baseCss: string, markedCss: string): {
css: string;
merged: boolean;
};