UNPKG

superchats

Version:

SuperChats is a premium library with unique features that control Whatsapp functions. With Superchats you can build service bots, multiservice chats or any system that uses whatsapp

8 lines (7 loc) 261 B
export type JobType<T> = () => Promise<T>; export declare class SessionLock { static errors: any[]; static _promises: Promise<any>[]; static queueJobForNumber<T>(id: string, runJob: JobType<T>): Promise<T>; static clearQueue(): Promise<void>; }