Files
apollo/types/utils.d.ts
T
2019-09-19 17:49:06 +02:00

2 lines
109 B
TypeScript

export type DeepApplyThisType<T, TThis> = {[K in keyof T]: DeepApplyThisType<T[K], TThis>} & ThisType<TThis>