UNPKG

@azure/cosmos

Version:
17 lines 617 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TriggerType = void 0; // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. /** * Enum for trigger type values. * Specifies the type of the trigger. */ var TriggerType; (function (TriggerType) { /** Trigger should be executed before the associated operation(s). */ TriggerType["Pre"] = "pre"; /** Trigger should be executed after the associated operation(s). */ TriggerType["Post"] = "post"; })(TriggerType || (exports.TriggerType = TriggerType = {})); //# sourceMappingURL=TriggerType.js.map