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
// Note: `string | number | symbol` is the same as the built-in `PropertyKey` type
// Also: `type AppendToObject<T, U extends string | number | symbol, V> = { [K in (keyof T) | U]: K extends U ? V : K extends keyof T ? T[K] : never };`
export type AppendToObject<T, U extends PropertyKey, V> =