Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FileDB

import { FileDB } from "https://43hhiy6qn7mn5ffi4ynuojpiooehxoq5jy563oaj4lf3aewbondq.arweave.net/5s50Y9Bv2N6UqOYbRyXoc4h7uh1OO-24CeLLsBLBc0c/mod.ts";
class FileDB {
constructor(fsPath?: string);
private collections: Record<string, Collection>;
private fsPath: string;
 
get<T extends Model>(colName: string): Collection<T>;
save();
}

§Constructors

§
new FileDB(fsPath?: string)
[src]

§Properties

§
collections: Record<string, Collection>
[src]
§
fsPath: string
[src]

§Methods

§
get<T extends Model>(colName: string): Collection<T>
[src]
§
save()
[src]