Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/lophus/core/types.ts>PromiseCallbacks

Fully-modular TypeScript implementation of the Nostr protocol, oriented to web standards and edge environments
Latest
type alias PromiseCallbacks
import { type PromiseCallbacks } from "https://deno.land/x/lophus@0.0.13/core/types.ts";
definition: { resolve: (value: T | PromiseLike<T>) => void; reject: (reason?: unknown) => void; }