From ae1b82aa9e12ac047ffce1c4672b2c33ac9ecc9e Mon Sep 17 00:00:00 2001 From: Ben Date: Tue, 1 Jan 2019 23:39:02 -0500 Subject: [PATCH] fix tests --- types/raf/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/raf/index.d.ts b/types/raf/index.d.ts index ef7d214811..1cab1a2fc8 100644 --- a/types/raf/index.d.ts +++ b/types/raf/index.d.ts @@ -1,4 +1,4 @@ -// Type definitions for raf 3.4.0 +// Type definitions for raf 3.4 // Project: https://github.com/chrisdickinson/raf#readme // Definitions by: Ben Lorantfy // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped @@ -7,6 +7,6 @@ declare const raf: { (callback: (timestamp: number) => void): number; cancel: (handle: number) => void; polyfill: (globalObject?: any) => void; -} +}; export default raf;