node-sp-auth-nocolors
Version:
Unattended SharePoint http authentication with nodejs (Without Colors)
14 lines (13 loc) • 538 B
TypeScript
import { IOnlineAddinCredentials } from './../IAuthOptions';
import { IAuthResponse } from './../IAuthResponse';
import { OnlineResolver } from './base/OnlineResolver';
export declare class OnlineAddinOnly extends OnlineResolver {
private _authOptions;
private static TokenCache;
constructor(_siteUrl: string, _authOptions: IOnlineAddinCredentials);
getAuth(): Promise<IAuthResponse>;
protected InitEndpointsMappings(): void;
private getAuthUrl;
private get AcsRealmUrl();
private getRealm;
}