blowfish/node_modules/@headlessui/react/dist/components/transitions/utils/transition.d.ts

10 lines
276 B
TypeScript
Raw Normal View History

2023-01-29 22:30:24 +00:00
export declare function transition(node: HTMLElement, classes: {
enter: string[];
enterFrom: string[];
enterTo: string[];
leave: string[];
leaveFrom: string[];
leaveTo: string[];
entered: string[];
}, show: boolean, done?: () => void): () => void;