mirror of
https://github.com/Rushilwiz/spaceout.git
synced 2025-04-22 12:29:50 -04:00
3 lines
216 B
TypeScript
3 lines
216 B
TypeScript
export declare type Listener = (this: HTMLElement, ev: TransitionEvent) => any;
|
|
export default function transitionEnd(element: HTMLElement, handler: Listener, duration?: number | null, padding?: number): () => void;
|