@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
11 lines • 338 B
TypeScript
/**
* Enum for trigger type values.
* Specifies the type of the trigger.
*/
export declare enum TriggerType {
/** Trigger should be executed before the associated operation(s). */
Pre = "pre",
/** Trigger should be executed after the associated operation(s). */
Post = "post"
}
//# sourceMappingURL=TriggerType.d.ts.map