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
I noticed that the IFlagsmithFeature.id is typed as any. I looked into the types.d.ts file and found that the id field has type "numbers", which resolves to any:
I'm guessing that this should be changed to id: number; instead?
And perhaps this would've been caught if skipLibCheck was false in the tsconfig.json?