UNPKG

@mui/x-internals

Version:

Utility functions for the MUI X packages (internal use only).

7 lines 217 B
/** * Makes specified keys in a type optional. * * @template T - The original type. * @template K - The keys to make optional. */ export type MakeOptional<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;