Interface IAuthentication

Used for header based Authentication.

interface IAuthentication {
    getCometdHandshake(config?: object): object;
    getFetchOptions(options?: IFetchOptions): IFetchOptions;
    logout(): any;
    updateCredentials(credentials: ICredentials): string;
}

Implemented by

Methods