@byomakase/omakase-player
    Preparing search index...

    Interface CustomAuthenticationData

    Authentication data with a custom header factory.

    interface CustomAuthenticationData {
        headers: (url: string) => { headers: Record<string, string> };
        type: "custom";
    }
    Index

    Properties

    Properties

    headers: (url: string) => { headers: Record<string, string> }

    Returns request headers to apply for the given URL.

    type: "custom"