astro-ghostcms/.pnpm-store/v3/files/81/9bd91ca6c387f75ff6f30f966b1...

32 lines
1.3 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import * as _unocss_core from '@unocss/core';
import { Rule, Variant } from '@unocss/core';
import * as _unocss_preset_mini from '@unocss/preset-mini';
import { Theme, PresetMiniOptions } from '@unocss/preset-mini';
export { Theme, colors, preflights } from '@unocss/preset-mini';
declare const rules: Rule<Theme>[];
declare const shortcuts: _unocss_core.Shortcut<_unocss_preset_mini.Theme>[];
declare const theme: Theme;
declare function variants(options: PresetWindOptions): Variant<Theme>[];
interface PresetWindOptions extends PresetMiniOptions {
/**
* The important option lets you control whether UnoCSSs utilities should be marked with `!important`.
*
* This can be really useful when using UnoCSS with existing CSS that has high specificity selectors.
*
* You can also set `important` to a selector like `#app` instead, which will generate `#app :is(.m-1) { ... }`
*
* Also check out the compatibility with [:is()](https://caniuse.com/?search=%3Ais())
*
* @default false
*/
important?: boolean | string;
}
declare const presetWind: _unocss_core.PresetFactory<_unocss_preset_mini.Theme, PresetWindOptions>;
export { type PresetWindOptions, presetWind as default, presetWind, rules, shortcuts, theme, variants };