@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
17 lines • 617 B
JavaScript
;
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