reveal-sdk-node
Version:
RevealBI Node.js SDK
22 lines (21 loc) • 394 B
TypeScript
/**
* SharePoint authentication methods
*/
export declare enum RVSharePointAuthenticationMethod {
/**
* Windows (NT) authentication
*/
Windows = 0,
/**
* Forms based authentication
*/
Form = 1,
/**
* Office 365 authentication
*/
Office365 = 2,
/**
* Web based login authentication
*/
WebLogin = 3
}