UNPKG

@prismatic-io/spectral

Version:

Utility library for building Prismatic connectors and code-native integrations

25 lines (24 loc) 601 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * The different rule effects. */ var RuleEffect; (function (RuleEffect) { /** * Effect that hides the associated element. */ RuleEffect["HIDE"] = "HIDE"; /** * Effect that shows the associated element. */ RuleEffect["SHOW"] = "SHOW"; /** * Effect that enables the associated element. */ RuleEffect["ENABLE"] = "ENABLE"; /** * Effect that disables the associated element. */ RuleEffect["DISABLE"] = "DISABLE"; })(RuleEffect || (RuleEffect = {}));