@kahi-ui/framework
Version:
Straight-forward Svelte UI for the Web
12 lines (11 loc) • 350 B
TypeScript
import type { LiteralEnum } from "./util";
/**
* Represents the preset transition names that can be applied to Framework Components
*/
export declare enum TOKENS_TRANSITION_NAMES {
clip = "clip",
fade = "fade",
scale = "scale",
slide = "slide"
}
export declare type PROPERTY_TRANSITION_NAMES = LiteralEnum<TOKENS_TRANSITION_NAMES>;