UNPKG

@finsweet/ts-utils

Version:

Typescript utils for custom Webflow projects.

5 lines (4 loc) 216 B
/** * The picked keys will become Partial and the rest of the interface will stay the same. */ export type PickPartial<Original, Keys extends keyof Original> = Omit<Original, Keys> & Partial<Pick<Original, Keys>>;