You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
416 B
8 lines
416 B
import { Extractor } from '@unocss/core';
|
|
|
|
declare const quotedArbitraryValuesRE: RegExp;
|
|
declare const arbitraryPropertyRE: RegExp;
|
|
declare function splitCodeWithArbitraryVariants(code: string): string[];
|
|
declare const extractorArbitraryVariants: Extractor;
|
|
|
|
export { arbitraryPropertyRE, extractorArbitraryVariants as default, extractorArbitraryVariants, quotedArbitraryValuesRE, splitCodeWithArbitraryVariants };
|
|
|