@wxn0brp/db
Version:
A simple file-based database management system with support for CRUD operations, custom queries, and graph structures.
17 lines (16 loc) • 929 B
TypeScript
import Valthera from "./db/valthera.js";
import Graph from "./db/graph.js";
import ValtheraRemote from "./client/valthera.js";
import GraphRemote from "./client/graph.js";
import genId from "./helpers/gen.js";
import Relation from "./helpers/relation.js";
import CustomFileCpu from "./file/customFileCpu.js";
import ValtheraMemory, { createMemoryValthera } from "./actions/memory.js";
import { ValtheraAutoCreate } from "./helpers/autoCreate.js";
import { RelationTypes } from "./types/relation.js";
import { ValtheraCompatible } from "./types/valthera.js";
import { ValtheraTypes } from "./types/export.js";
export { Valthera, Graph, ValtheraRemote, GraphRemote, Relation, genId, CustomFileCpu, ValtheraMemory, createMemoryValthera, ValtheraAutoCreate, };
type GraphCompatible = Graph | GraphRemote;
export type { ValtheraCompatible, RelationTypes, GraphCompatible, ValtheraTypes };
export type Id = import("./types/Id.js").Id;