Trilium Backend API
    Preparing search index...

    Interface AxiosInterceptorHandler<T>

    interface AxiosInterceptorHandler<T> {
        fulfilled: AxiosInterceptorFulfilled<T>;
        rejected?: AxiosInterceptorRejected;
        runWhen: (config: AxiosRequestConfig) => boolean;
        synchronous: boolean;
    }

    Type Parameters

    • T
    Index

    Properties

    runWhen: (config: AxiosRequestConfig) => boolean
    synchronous: boolean