@digitalpersona/services
Version:
DigitalPersona Web Access Services
14 lines (13 loc) • 406 B
TypeScript
export declare enum ServerSettingType {
/** Unknown Server Settings Type. */
Unknown = 0,
/** Server Settings will be accessible only for Domain Administrators. */
Admin = 1,
/** Server Settings will be accessible for anybody (public). */
Public = 2
}
export declare enum ServerSettings {
"LockoutThreshold" = 0,
"LockoutDuration" = 1,
"LockoutReset" = 2
}