@byomakase/omakase-player
Version:
## Omakase Player - Open source JavaScript framework for building frame accurate video experiences
9 lines (8 loc) • 442 B
TypeScript
import { AxiosRequestConfig } from 'axios';
import { AuthenticationData } from '../authentication/model';
export declare class AuthConfig {
static _authentication?: AuthenticationData;
static set authentication(authentication: AuthenticationData | undefined);
static get authentication(): AuthenticationData | undefined;
static createAxiosRequestConfig(url: string, authentication?: AuthenticationData): AxiosRequestConfig;
}