UNPKG

dograma

Version:

NodeJS/Browser MTProto API Telegram client library,

15 lines (14 loc) 413 B
/// <reference types="node" /> import bigInt from "big-integer"; export declare class RequestState { containerId?: bigInt.BigInteger; msgId?: bigInt.BigInteger; request: any; data: Buffer; after: any; result: undefined; promise: Promise<unknown>; resolve: (value?: any) => void; reject: (reason?: any) => void; constructor(request: any, after?: undefined); }