ravendb
Version:
RavenDB client for Node.js
11 lines • 391 B
TypeScript
export type ForceRevisionStrategy =
/**
* Don't force revision
*/
"None"
/**
* Create a forced revision from the document that is currently in store - BEFORE applying any changes made by the user
* The only exception is: with current implementation the forced revision for *new* document only is 'after', not 'before'
*/
| "Before";
//# sourceMappingURL=ForceRevisionStrategy.d.ts.map