evils.db
Version:
  
20 lines (19 loc) • 429 B
TypeScript
export interface SqliteDatabaseOptions {
filePath: string;
table: string;
}
export interface MongoDatabaseOptions {
url?: string;
collection: string;
collectionName: string;
clientOptions?: any;
}
export interface YamlDatabaseOptions {
filePath: string;
}
export interface JsonDatabaseOptions {
filePath: string;
}
export interface BsonDatabaseOptions {
filePath: string;
}