function deferredimport { deferred } from "https://dotland.deno.dev/x/live@1.107.0/utils/promise.ts"; deferred<T>(): Deferred<T>Creates a Promise with the reject and resolve functions placed as methods on the promise object itself. ExamplesExample 1 import { deferred } from "https://deno.land/std@$STD_VERSION/async/deferred.ts"; const p = deferred<number>(); // ... p.resolve(42); Type ParametersTReturnsDeferred<T>