Interface TelegramWorkerOptions<T>

interface TelegramWorkerOptions<T extends WorkerCustomMethods> {
    client: BaseTelegramClient;
    customMethods?: T;
    workerId?: string;
}

Type Parameters

Properties

customMethods?: T
workerId?: string