mirror of
https://github.com/nunocoracao/blowfish.git
synced 2026-01-30 16:31:52 +01: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;
|