ravendb
Version:
RavenDB client for Node.js
27 lines • 843 B
JavaScript
export class AbstractAwaitableOperation {
get resultType() {
return "OperationId";
}
}
export class AwaitableServerOperation extends AbstractAwaitableOperation {
getCommand(conventions) {
throw new Error("getCommand() must be implemented in extending class.");
}
}
export class AwaitableMaintenanceOperation extends AbstractAwaitableOperation {
getCommand(conventions) {
throw new Error("getCommand() must be implemented in extending class.");
}
}
export class AwaitableOperation extends AbstractAwaitableOperation {
getCommand(store, conventions, httpCache) {
throw new Error("getCommand() must be implemented in extending class.");
}
}
export class OperationExceptionResult {
type;
message;
error;
statusCode;
}
//# sourceMappingURL=OperationAbstractions.js.map