export = actionEnum; /** * Enum for the document's notification "action" option */ type actionEnum = notifyActionEnum; /** * @typedef {number} notifyActionEnum */ /** * Enum for the document's notification "action" option * @readOnly * @enum {notifyActionEnum} */ declare const actionEnum: Readonly<{ CREATE: 1; DELETE: 2; REPLACE: 3; UPDATE: 4; UPSERT: 5; WRITE: 6; }>; declare namespace actionEnum { export { notifyActionEnum }; } type notifyActionEnum = number;