axiodb
Version:
A blazing-fast, lightweight, and scalable nodejs package based DBMS for modern application. Supports schemas, encryption, and advanced query capabilities.
8 lines (7 loc) • 325 B
TypeScript
import { FastifyInstance, FastifyPluginOptions } from "fastify";
import { AxioDB } from "../../../Services/Indexation.operation";
interface RouterOptions extends FastifyPluginOptions {
AxioDBInstance: AxioDB;
}
export default function dbRouter(fastify: FastifyInstance, options: RouterOptions): Promise<void>;
export {};