/** * makes all properties of `T` optional * * @since 0.0.2 */ export type Optional = { [K in keyof T]?: T[K]; }; //# sourceMappingURL=optional.d.ts.map