Skip to main content
Module

x/tsafe/tools/Unite.ts

🔩 The missing TypeScript utils
Go to Latest
File
export type Unite<T> = T extends Record<string, unknown> ? { [Key in keyof T]: T[Key] } : T;