helper.d.ts 470 B

123456789
  1. export declare const noop: () => void;
  2. export declare const UNDEFINED: undefined;
  3. export declare const OBJECT: ObjectConstructor;
  4. export declare const isUndefined: (v: any) => v is undefined;
  5. export declare const isFunction: (v: any) => v is Function;
  6. export declare const mergeObjects: (a: any, b: any) => any;
  7. export declare const hasWindow: () => boolean;
  8. export declare const hasDocument: () => boolean;
  9. export declare const hasRequestAnimationFrame: () => boolean;