/** * tailwind的间距单位 */ export type TailwindSpacing = 0 | 0.5 | 1 | 1.5 | 2 | 2.5 | 3 | 3.5 | 4 | 5 | 5.5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 18 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96; /** * Tailwind 的宽度单位 */ export type TailwindWidth = TailwindSpacing | 'auto' | '1/2' | '1/3' | '2/3' | '1/4' | '2/4' | '3/4' | '1/5' | '2/5' | '3/5' | '4/5' | '1/6' | '2/6' | '3/6' | '4/6' | '5/6' | '1/12' | '2/12' | '3/12' | '4/12' | '5/12' | '6/12' | '7/12' | '8/12' | '9/12' | '10/12' | '11/12' | 'full' | 'screen' | 'min' | 'max' | 'fit'; /** * Tailwind的高度单位 */ export type TailwindHeight = TailwindSpacing | 'auto' | '1/2' | '1/3' | '2/3' | '1/4' | '2/4' | '3/4' | '1/5' | '2/5' | '3/5' | '4/5' | '1/6' | '2/6' | '3/6' | '4/6' | '5/6' | 'full' | 'screen'; export declare const REG_TW_W: RegExp; export declare const REG_TW_H: RegExp; export declare const REG_TW_GAP: RegExp; export declare const REG_TW_BASIS: RegExp; export declare const REG_TW_WS: RegExp;