mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
39 lines
916 B
TypeScript
39 lines
916 B
TypeScript
export {
|
|
type Declaration,
|
|
decompose,
|
|
type PropertyRule,
|
|
type UtilityCss,
|
|
type Variant,
|
|
type VariantKind,
|
|
} from './decompose';
|
|
export { type DesignSystem, loadDesignSystem } from './design-system';
|
|
export {
|
|
type CompiledRule,
|
|
type EmitCssOptions,
|
|
type EmittedCss,
|
|
emitCss,
|
|
type HoistOptions,
|
|
type PropertyDef,
|
|
type RegisteredPropertiesOptions,
|
|
type RegisteredPropertyVariableOptions,
|
|
} from './emit';
|
|
export { clearTokenModuleCache, EvaluationError, loadTokenModule, type TokenValue } from './evaluator';
|
|
export {
|
|
type DeriveClassNameOptions,
|
|
type DerivedClassName,
|
|
DiagnosticError,
|
|
deriveClassName,
|
|
type NameContext,
|
|
type ResolveName,
|
|
} from './naming';
|
|
export {
|
|
type ResolveGroup,
|
|
type ResolveTokenModule,
|
|
type TailwindEmitOptions,
|
|
type TailwindMode,
|
|
type TailwindOptions,
|
|
type TailwindResolveOptions,
|
|
type TailwindVarsOptions,
|
|
tailwind,
|
|
} from './plugin';
|