change default export to export =

This commit is contained in:
Ben
2019-01-02 19:57:52 -05:00
parent ae1b82aa9e
commit 1f023ca641
+2 -2
View File
@@ -7,6 +7,6 @@ declare const raf: {
(callback: (timestamp: number) => void): number;
cancel: (handle: number) => void;
polyfill: (globalObject?: any) => void;
};
}
export default raf;
export = raf;