@jaricardodev/ews-javascript-api
Version:
EWS Managed api in JavaScript
23 lines (17 loc) • 377 B
text/typescript
/**
* The consent states enumeration
*/
export enum ConsentState {
/**
* User has closed the consent page or has not responded yet.
*/
NotResponded = 0,
/**
* User has requested to disable the extension.
*/
NotConsented = 1,
/**
* User has requested to enable the extension.
*/
Consented = 2
}