Sha256: 1edc9192dfc277c60b92525cdfa1980e1bfd161ae77286c96777d10db36be73c
Contents?: true
Size: 893 Bytes
Versions: 61
Compression:
Stored size: 893 Bytes
Contents
/** Extract all optional keys from the given type. This is useful when you want to create a new type that contains different type values for the optional keys only. @example ``` import type {OptionalKeysOf, Except} from 'type-fest'; interface User { name: string; surname: string; luckyNumber?: number; } const REMOVE_FIELD = Symbol('remove field symbol'); type UpdateOperation<Entity extends object> = Except<Partial<Entity>, OptionalKeysOf<Entity>> & { [Key in OptionalKeysOf<Entity>]?: Entity[Key] | typeof REMOVE_FIELD; }; const update1: UpdateOperation<User> = { name: 'Alice' }; const update2: UpdateOperation<User> = { name: 'Bob', luckyNumber: REMOVE_FIELD }; ``` @category Utilities */ export type OptionalKeysOf<BaseType extends object> = Exclude<{ [Key in keyof BaseType]: BaseType extends Record<Key, BaseType[Key]> ? never : Key }[keyof BaseType], undefined>;
Version data entries
61 entries across 61 versions & 3 rubygems