mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-22 05:11:53 +02:00
9 lines
276 B
TypeScript
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;
|