interface ExpectedSpyCallimport { type ExpectedSpyCall } from "https://dotland.deno.dev/std@0.181.0/testing/mock.ts"; Call information recorded by a spy. Type ParametersoptionalSelf = anyoptionalArgs extends unknown[] = any[]optionalReturn = anyPropertiesoptionalargs: [...Args, ...unknown[]]Arguments passed to a function when called. optionalself: SelfThe instance that a method was called on. optionalreturned: ReturnThe value that was returned by a function. If you expect a promise to reject, expect error instead. optionalerror: { Class?: new (...args: any[]) => Error; msgIncludes?: string; }