node-sp-auth
Version:
Unattended SharePoint http authentication with nodejs
9 lines (8 loc) • 399 B
TypeScript
import { IAuthResponse } from './auth/IAuthResponse';
import { IAuthOptions } from './auth/IAuthOptions';
export declare function getAuth(url: string, options?: IAuthOptions): Promise<IAuthResponse>;
export * from './auth/IAuthOptions';
export * from './auth/IAuthResponse';
export * from './utils/TokenHelper';
export * from './auth/base';
export { setup, IConfiguration } from './config';