UNPKG

@alexaegis/common

Version:
5 lines 196 B
/** * Mark some variables as optional, but not all. */ export type SomePartial<T, K extends keyof T = keyof T> = Partial<Pick<T, K>> & Omit<T, K>; //# sourceMappingURL=some-partial.type.d.ts.map