moonlifedb
Version:
A JSON database with a bunch of tools and typescript support.
20 lines (19 loc) • 455 B
TypeScript
export declare class ExternalConnection {
tablePath: string;
localip: string;
port: string;
/**
* 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: {
path: string;
ip: string;
port: number | string;
});
}