UNPKG

@tokamak-network/thanos-sdk

Version:
7 lines (6 loc) 113 B
/** * Utility type for deep partials. */ export type DeepPartial<T> = { [P in keyof T]?: DeepPartial<T[P]> }