import type { DatabaseConfig } from "./database.js"; import type { WebRtcConfig } from "./web-rtc.js"; export interface Config { database?: DatabaseConfig; webRtc?: WebRtcConfig; onError?: (table: string, error: unknown) => void; } //# sourceMappingURL=light-db.d.ts.map