trilium
    Preparing search index...
    interface AxiosStatic {
        all: <T>(values: (T | Promise<T>)[]) => Promise<T[]>;
        Axios: typeof Axios;
        AxiosError: typeof AxiosError;
        AxiosHeaders: typeof AxiosHeaders;
        Cancel: CancelStatic;
        CanceledError: typeof CanceledError;
        CancelToken: CancelTokenStatic;
        defaults: Omit<AxiosDefaults<any>, "headers"> & {
            headers: HeadersDefaults & { [key: string]: AxiosHeaderValue };
        };
        formToJSON: (form: GenericFormData | GenericHTMLFormElement) => object;
        getAdapter: (
            adapters: undefined | AxiosAdapterConfig | AxiosAdapterConfig[],
        ) => AxiosAdapter;
        HttpStatusCode: typeof HttpStatusCode;
        interceptors: {
            request: AxiosInterceptorManager<InternalAxiosRequestConfig<any>>;
            response: AxiosInterceptorManager<AxiosResponse<any, any>>;
        };
        isAxiosError: <T = any, D = any>(
            payload: any,
        ) => payload is AxiosError<T, D>;
        isCancel: (value: any) => value is Cancel;
        mergeConfig: <D = any>(
            config1: AxiosRequestConfig<D>,
            config2: AxiosRequestConfig<D>,
        ) => AxiosRequestConfig<D>;
        spread: <T, R>(callback: (...args: T[]) => R) => (array: T[]) => R;
        toFormData: (
            sourceObj: object,
            targetFormData?: GenericFormData,
            options?: FormSerializerOptions,
        ) => GenericFormData;
        VERSION: string;
        create(config?: CreateAxiosDefaults<any>): AxiosInstance;
        delete<T = any, R = AxiosResponse<T, any>, D = any>(
            url: string,
            config?: AxiosRequestConfig<D>,
        ): Promise<R>;
        get<T = any, R = AxiosResponse<T, any>, D = any>(
            url: string,
            config?: AxiosRequestConfig<D>,
        ): Promise<R>;
        getUri(config?: AxiosRequestConfig<any>): string;
        head<T = any, R = AxiosResponse<T, any>, D = any>(
            url: string,
            config?: AxiosRequestConfig<D>,
        ): Promise<R>;
        options<T = any, R = AxiosResponse<T, any>, D = any>(
            url: string,
            config?: AxiosRequestConfig<D>,
        ): Promise<R>;
        patch<T = any, R = AxiosResponse<T, any>, D = any>(
            url: string,
            data?: D,
            config?: AxiosRequestConfig<D>,
        ): Promise<R>;
        patchForm<T = any, R = AxiosResponse<T, any>, D = any>(
            url: string,
            data?: D,
            config?: AxiosRequestConfig<D>,
        ): Promise<R>;
        post<T = any, R = AxiosResponse<T, any>, D = any>(
            url: string,
            data?: D,
            config?: AxiosRequestConfig<D>,
        ): Promise<R>;
        postForm<T = any, R = AxiosResponse<T, any>, D = any>(
            url: string,
            data?: D,
            config?: AxiosRequestConfig<D>,
        ): Promise<R>;
        put<T = any, R = AxiosResponse<T, any>, D = any>(
            url: string,
            data?: D,
            config?: AxiosRequestConfig<D>,
        ): Promise<R>;
        putForm<T = any, R = AxiosResponse<T, any>, D = any>(
            url: string,
            data?: D,
            config?: AxiosRequestConfig<D>,
        ): Promise<R>;
        request<T = any, R = AxiosResponse<T, any>, D = any>(
            config: AxiosRequestConfig<D>,
        ): Promise<R>;
        <T = any, R = AxiosResponse<T, any>, D = any>(
            config: AxiosRequestConfig<D>,
        ): Promise<R>;
        <T = any, R = AxiosResponse<T, any>, D = any>(
            url: string,
            config?: AxiosRequestConfig<D>,
        ): Promise<R>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    all: <T>(values: (T | Promise<T>)[]) => Promise<T[]>
    Axios: typeof Axios
    AxiosError: typeof AxiosError
    AxiosHeaders: typeof AxiosHeaders
    Cancel: CancelStatic
    CanceledError: typeof CanceledError
    CancelToken: CancelTokenStatic
    defaults: Omit<AxiosDefaults<any>, "headers"> & {
        headers: HeadersDefaults & { [key: string]: AxiosHeaderValue };
    }
    formToJSON: (form: GenericFormData | GenericHTMLFormElement) => object
    getAdapter: (
        adapters: undefined | AxiosAdapterConfig | AxiosAdapterConfig[],
    ) => AxiosAdapter
    HttpStatusCode: typeof HttpStatusCode
    interceptors: {
        request: AxiosInterceptorManager<InternalAxiosRequestConfig<any>>;
        response: AxiosInterceptorManager<AxiosResponse<any, any>>;
    }
    isAxiosError: <T = any, D = any>(payload: any) => payload is AxiosError<T, D>
    isCancel: (value: any) => value is Cancel
    mergeConfig: <D = any>(
        config1: AxiosRequestConfig<D>,
        config2: AxiosRequestConfig<D>,
    ) => AxiosRequestConfig<D>
    spread: <T, R>(callback: (...args: T[]) => R) => (array: T[]) => R
    toFormData: (
        sourceObj: object,
        targetFormData?: GenericFormData,
        options?: FormSerializerOptions,
    ) => GenericFormData
    VERSION: string

    Methods

    post