UNPKG

@azure/cosmos

Version:
14 lines 495 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. /** * Enum for trigger type values. * Specifies the type of the trigger. */ export 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 || (TriggerType = {})); //# sourceMappingURL=TriggerType.js.map