ultra-telegram-framework
    Preparing search index...

    Interface TelegramApiResponse<T>

    Shape of a successful Telegram API response envelope.

    interface TelegramApiResponse<T = unknown> {
        description?: string;
        ok: boolean;
        result: T;
    }

    Type Parameters

    • T = unknown
    Index

    Properties

    description?: string
    ok: boolean
    result: T