API reference › @evolu/common › Types › PartialProp
type PartialProp<T, K> = Omit<T, K> & Partial<Pick<T, K>>;
Defined in: packages/common/src/Types.ts:209
Makes a specific property of an object optional while keeping others unchanged.
API reference › @evolu/common › Types › PartialProp
type PartialProp<T, K> = Omit<T, K> & Partial<Pick<T, K>>;
Defined in: packages/common/src/Types.ts:209
Makes a specific property of an object optional while keeping others unchanged.