UNPKG

@metacall/faas

Version:

Reimplementation of MetaCall FaaS platform written in TypeScript.

12 lines (11 loc) 279 B
interface Invocation { resolve: (value: string) => void; reject: (reason: string) => void; } declare class InvokeQueue { private queue; push(invoke: Invocation): string; get(id: string): Invocation; } export declare const invokeQueue: InvokeQueue; export {};