typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
18 lines (17 loc) • 371 B
TypeScript
/**
* Spanner specific connection credential options.
*/
export interface SpannerConnectionCredentialsOptions {
/**
* Connection url where the connection is performed.
*/
readonly instanceId?: string;
/**
* Database host.
*/
readonly projectId?: string;
/**
* Database host port.
*/
readonly databaseId?: string;
}