UNPKG

@sidekick-coder/db

Version:

Cli Tool to manipulate data from diferent sources

17 lines (14 loc) 397 B
import { DatabaseDefinition } from './schemas.cjs'; import { SourceItem } from '../common/sources.cjs'; import 'valibot'; interface Config { dirname: string; filename: string; databases: { default: string; sources: SourceItem<DatabaseDefinition>[]; }; [key: string]: any; } declare function resolve(filename: string): Config; export { type Config, resolve };