UNPKG

lendb-server

Version:

`LenDB Server` is a wrapper around another database called Acebase that acts like a client. Think of it as parse-server and firebase had baby then voilah!!! `Hello World!!` LenDB is born.

12 lines (11 loc) 312 B
import Emittery from "emittery"; export declare class Queue { emitter: Emittery; protected lists: { [any: string]: Function[]; }; constructor(emitter: Emittery); getQueue(ref: string): void; count(ref: string): void; add(ref: string, callback: () => void): void; }