Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

std/expect/expect.ts>Async

Deno standard library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
type alias Async
import { type Async } from "https://deno.land/std@0.209.0/expect/expect.ts";
definition: [K in keyof T]: T[K] extends Fn ? (...args: Parameters<T[K]>) => Promise<ReturnType<T[K]>> : T[K]