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