@blueleader07/typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
20 lines (19 loc) • 469 B
TypeScript
/**
* DynamoDb specific connection options.
*/
import { BaseDataSourceOptions } from "../../data-source/BaseDataSourceOptions";
export interface DynamoConnectionOptions extends BaseDataSourceOptions {
/**
* Database type.
*/
readonly type: "dynamodb";
/**
* Database name to connect to.
*/
readonly database?: string;
/**
* The driver object
* This defaults to require("mongodb")
*/
readonly driver?: any;
}