Makes keys of type optional
type PartiallyOptionalProps = MakeOptional<{test: string; another: number;}, 'another'>; // {test: string; another?: number;}
Generated using TypeDoc
Makes keys of type optional
Example