UNPKG

@azure/cosmos

Version:
17 lines 478 B
/** * Enum for trigger operation values. * specifies the operations on which a trigger should be executed. */ export declare enum TriggerOperation { /** All operations. */ All = "all", /** Create operations only. */ Create = "create", /** Update operations only. */ Update = "update", /** Delete operations only. */ Delete = "delete", /** Replace operations only. */ Replace = "replace" } //# sourceMappingURL=TriggerOperation.d.ts.map