weapp-tailwindcss
Version:
把 tailwindcss 原子化样式思想,带给小程序开发者们! bring tailwindcss to miniprogram developers!
18 lines (17 loc) • 795 B
TypeScript
export declare const uniAppPlatform: string[];
export declare const queryKey = "weapp-tw-platform";
export declare const ifdefAtRule = "weapp-tw-ifdef";
export declare const ifndefAtRule = "weapp-tw-ifndef";
export declare function createConditionalAtRule(value: string): string;
export declare function createNegativeConditionalAtRule(value: string): string;
export declare function normalComment(text: string): string;
export declare function ifdef(text: string): {
start: string;
end: string;
};
export declare function ifndef(text: string): {
start: string;
end: string;
};
export declare function matchCustomPropertyFromValue(str: string, cb: (arr: RegExpExecArray, index: number) => void): void;
export declare function parseConditionalAtRuleParam(params: string): string;