function assertSpyCallAsyncimport { assertSpyCallAsync } from "https://deno.land/std@0.145.0/testing/mock.ts"; assertSpyCallAsync<Self, Args extends unknown[], Return>(spy: Spy<Self, Args, Promise<Return>>,callIndex: number,expected?: ExpectedSpyCall<Self, Args, Promise<Return> | Return>,)Asserts that an async spy is called as expected. Asserts that an async spy is called as expected. Type ParametersSelfArgs extends unknown[]ReturnParametersspy: Spy<Self, Args, Promise<Return>>callIndex: numberoptionalexpected: ExpectedSpyCall<Self, Args, Promise<Return> | Return>