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