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
8 lines (7 loc) • 333 B
TypeScript
import { FastifyInstance, FastifyPluginOptions } from "fastify";
import { AxioDB } from "../../../Services/Indexation.operation";
interface RouterOptions extends FastifyPluginOptions {
AxioDBInstance: AxioDB;
}
export default function collectionRouter(fastify: FastifyInstance, options: RouterOptions): Promise<void>;
export {};