UNPKG

@finsweet/ts-utils

Version:

Typescript utils for custom Webflow projects.

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