You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.
Haven't had any issues until last night. Wondering if anyone else is receiving the following error from my npm build:
/home/node/app/node_modules/react-ga/types/index.d.ts
(87,20): A rest parameter must be of an array type.
So I went to look at the the current types in index.d.ts (line87) is currently:
export function ga(...args: any): void;
So I changed it to be an array:
export function ga([...args]: any): void;
Managed to get the build running again without any errors.
Possible for you guys to update this bug?
The text was updated successfully, but these errors were encountered: