interface SpyCallimport { type SpyCall } 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 = anyPropertiesargs: ArgsArguments passed to a function when called. optionalreturned: ReturnThe value that was returned by a function. optionalerror: ErrorThe error value that was thrown by a function. optionalself: SelfThe instance that a method was called on.