mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 14:09:30 +08:00
22 lines
610 B
Text
22 lines
610 B
Text
import { SourceCodeTransformer } from '@unocss/core';
|
|
|
|
interface TransformerVariantGroupOptions {
|
|
/**
|
|
* Separators to expand.
|
|
*
|
|
* ```
|
|
* foo-(bar baz) -> foo-bar foo-baz
|
|
* ^
|
|
* separator
|
|
* ```
|
|
*
|
|
* You may set it to `[':']` for strictness.
|
|
*
|
|
* @default [':', '-']
|
|
* @see https://github.com/unocss/unocss/pull/1231
|
|
*/
|
|
separators?: (':' | '-')[];
|
|
}
|
|
declare function transformerVariantGroup(options?: TransformerVariantGroupOptions): SourceCodeTransformer;
|
|
|
|
export { TransformerVariantGroupOptions, transformerVariantGroup as default };
|