UNPKG

moonlifedb

Version:

A JSON database with a bunch of tools and typescript support.

26 lines (25 loc) 709 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.ExternalConnection = void 0; const CoreCheck_1 = require("../CoreCheck"); const lib = new CoreCheck_1.Memory(); class ExternalConnection { tablePath; localip; port; /** * NOT SUPPORTED YET * * ExternalConnection adapter for the database app * @param options * @param path a path to the folder, where to store data * @param ip * @param port */ constructor(options) { this.tablePath = options.path; this.localip = options.ip; this.port = String(options.port); } } exports.ExternalConnection = ExternalConnection;