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
Hello, when I upgrade from 2.8 to 2.9 I get this error:
node_modules/@types/ramda/src/$operation.d.ts
(15,54): Type 'keyof T' does not satisfy the constraint 'string'.
Type 'string | number | symbol' is not assignable to type 'string'.
Type 'number' is not assignable to type 'string'.
the typing in question
export type Omit<T, K extends string> = Pick<T, Diff<keyof T, K>>;
Is it an incompatibility or am I missing sth ?
The text was updated successfully, but these errors were encountered:
@ikatyang thx for the quick answer !
I had indeed an old version.
It was due to yarn having an old version of the package in cache.
If I may ask, why isn't there a release/version bump process with this package ? Wouldn't it avoir these kind of problem ?
Hello, when I upgrade from 2.8 to 2.9 I get this error:
the typing in question
Is it an incompatibility or am I missing sth ?
The text was updated successfully, but these errors were encountered: