axiodb
Version:
The Pure JavaScript Alternative to SQLite. Embedded NoSQL database for Node.js with MongoDB-style queries, zero native dependencies, built-in InMemoryCache, and web GUI. Perfect for desktop apps, CLI tools, and embedded systems. No compilation, no platfor
18 lines • 607 B
JavaScript
;
/**
* Client-side type definitions for AxioDBCloud
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ConnectionState = void 0;
/**
* Connection state
*/
var ConnectionState;
(function (ConnectionState) {
ConnectionState["DISCONNECTED"] = "DISCONNECTED";
ConnectionState["CONNECTING"] = "CONNECTING";
ConnectionState["CONNECTED"] = "CONNECTED";
ConnectionState["RECONNECTING"] = "RECONNECTING";
ConnectionState["FAILED"] = "FAILED";
})(ConnectionState || (exports.ConnectionState = ConnectionState = {}));
//# sourceMappingURL=client.types.js.map