Front end of the Slack clone application.

AnimationFrame.d.ts 262B

1234567
  1. export declare class RequestAnimationFrameDefinition {
  2. cancelAnimationFrame: (handle: number) => void;
  3. requestAnimationFrame: (cb: () => void) => number;
  4. constructor(root: any);
  5. }
  6. export declare const AnimationFrame: RequestAnimationFrameDefinition;