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.
19 lines
733 B
19 lines
733 B
import * as _unocss_core from '@unocss/core';
|
|
import { Rule, Variant, Preset } 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[];
|
|
|
|
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 {
|
|
}
|
|
declare function presetWind(options?: PresetWindOptions): Preset<Theme>;
|
|
|
|
export { PresetWindOptions, presetWind as default, presetWind, rules, shortcuts, theme, variants };
|
|
|