sqlite-gui-node
Version:
GUI for Node js SQLite databases
5 lines (4 loc) • 324 B
TypeScript
import { Request, Response, NextFunction } from "express";
import type { Database } from "sqlite3";
export declare function SqliteGuiNode(db: Database, port?: number): Promise<void>;
export declare function SqliteGuiNodeMiddleware(app: any, db: Database): (req: Request, res: Response, next: NextFunction) => Promise<void>;