@sidekick-coder/db
Version:
Cli Tool to manipulate data from diferent sources
17 lines (14 loc) • 395 B
TypeScript
import { DatabaseDefinition } from './schemas.js';
import { SourceItem } from '../common/sources.js';
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 };