eth-hooks2
Version:
A set of hooks to turbocharge buidling
10 lines • 318 B
TypeScript
/**
* #### Summary
* Similar to [partial](https://www.typescriptlang.org/docs/handbook/utility-types.html#partialtype) int typescript but allows deep partial types.
*
* @category Models
*/
export declare type DeepPartial<T> = {
[P in keyof T]?: DeepPartial<T[P]>;
};
//# sourceMappingURL=utilityTypes.d.ts.map