API Reference / @evolu/common / Types / PartialProp
Type Alias: PartialProp<T, K>
type PartialProp<T, K> = Omit<T, K> & Partial<Pick<T, K>>;
Defined in: packages/common/src/Types.ts:208
Makes a specific property of an object optional while keeping others unchanged.
Type Parameters
Type Parameter |
---|
T |
K extends keyof T |