Files
antrean-anjungan/examples/nuxt3-websocket-client/node_modules/standard-as-callback/built/index.d.ts
T
2025-09-18 19:01:22 +07:00

6 lines
218 B
TypeScript

import { CallbackFunction } from "./types";
export interface IOptions {
spread: boolean;
}
export default function asCallback<T>(promise: Promise<T>, nodeback: CallbackFunction<T>, options?: IOptions): Promise<T>;