type OnlyRequiredKeys = U extends keyof T ? (undefined extends T[U] ? never : U) : never; export type OnlyRequired = Pick>; export {};