Function fetchLatestBaileysVersion

  • utility that fetches latest baileys version from the master branch. Use to ensure your WA connection is always on the latest version

    Parameters

    • options: AxiosRequestConfig<any> = {}

    Returns Promise<{
        error: undefined;
        isLatest: boolean;
        version: WAVersion;
    } | {
        error: any;
        isLatest: boolean;
        version: WAVersion;
    }>

Generated using TypeDoc