blowfish/node_modules/@headlessui/react/dist/components/transitions/utils/transition.d.ts
2023-01-29 22:30:24 +00:00

9 lines
276 B
TypeScript

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;