telegramsjs
    Preparing search index...

    Interface IApiConfig

    Interface representing the configuration for an API request.

    interface IApiConfig {
        agent?:
            | boolean
            | Agent
            | ((parsedUrl: URL) => boolean | Agent | undefined);
        body: BodyInit | MultipartStream;
        compress: boolean;
        headers: HeadersInit;
        method: string;
    }
    Index

    Properties

    agent?: boolean | Agent | ((parsedUrl: URL) => boolean | Agent | undefined)
    body: BodyInit | MultipartStream
    compress: boolean
    headers: HeadersInit
    method: string