UNPKG

@nsmp/js-api

Version:

Types for jsApi

4 lines (3 loc) 92 B
export type DeepPartial<T> = T extends object ? {[P in keyof T]?: DeepPartial<T[P]>} : T;