export type RecursivePartial = { // tslint:disable-next-line:array-type [P in keyof T]?: T[P] extends Array ? RecursivePartial[] : T[P] extends object ? RecursivePartial : T[P]; };