@sassoftware/vi-api
Version:
Types used in the SAS Visual Investigator API
25 lines (24 loc) • 788 B
JavaScript
import { expectType } from "../../shared/util/helper-functions";
/** @category Identities Types */
export var SizeType;
(function (SizeType) {
SizeType["Small"] = "small";
SizeType["Medium"] = "medium";
SizeType["XLarge"] = "x-large";
})(SizeType || (SizeType = {}));
/** @category Identities Types */
export var IdentityType;
(function (IdentityType) {
IdentityType["User"] = "user";
IdentityType["Group"] = "group";
})(IdentityType || (IdentityType = {}));
/** @category Identities Types */
export var IdentityState;
(function (IdentityState) {
IdentityState["Active"] = "active";
IdentityState["Inactive"] = "inactive";
IdentityState["Locked"] = "locked";
})(IdentityState || (IdentityState = {}));
expectType(true);
expectType(true);
expectType(true);