AniLink - v2.0.0
    Preparing search index...

    Interface RequestAuth

    Authentication material a provider can apply to an HTTP request.

    interface RequestAuth {
        headers?: Readonly<Record<string, string>>;
        token?: string;
    }
    Index
    headers?: Readonly<Record<string, string>>

    Explicit headers for schemes such as Basic auth or provider API keys.

    token?: string

    A bearer token, when the provider uses bearer authentication.