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
Also getting a heap of implicit 'any' warnings on the parameters of events (onEnd, onStart, etc). Can these either have types applied or (at minimum) explicit 'any' types added?
type countUpHook = ( useCountUpProps, ) => { countUp: number | string; onReset: () => void; nUpdate: () => void; onPauseResume: () => void; onStart: ({ pauseResume }) => void; onEnd: ({ pauseResume }) => void; };
not have
update
The text was updated successfully, but these errors were encountered: