type alias Spy.ObjStubimport { type Spy } from "https://deno.land/x/rimbu@1.2.0/spy/index.ts"; const { ObjStub } = Spy; A stub implementation type for objects of type T. Type ParametersTdefinition: [K in keyof T]?: T[K] extends Func ? Spy.FnStub<T[K]> : T[K]