MockedObject: MaybeMockedConstructor<T> & {
    [K in MethodKeysOf<T>]: T[K] extends MockableFunction
        ? MockedFn<T[K]>
        : T[K]
} & { [K in PropertyKeysOf<T>]: T[K] }

Type Parameters

  • T