mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
370 B
TypeScript
13 lines
370 B
TypeScript
// Type definitions for animation-frame 0.1.7
|
|
// Project: https://github.com/kof/animation-frame
|
|
// Definitions by: Qinfeng Chen <https://github.com/qinfchen>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
interface AnimationFrame {
|
|
new(): AnimationFrame;
|
|
request(callback: () => void): void;
|
|
}
|
|
|
|
declare var AnimationFrame: AnimationFrame;
|
|
|