-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathDataSourceOptions.ts
More file actions
39 lines (38 loc) · 2.23 KB
/
DataSourceOptions.ts
File metadata and controls
39 lines (38 loc) · 2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import type { AuroraMysqlDataSourceOptions } from "../driver/aurora-mysql/AuroraMysqlDataSourceOptions"
import type { AuroraPostgresDataSourceOptions } from "../driver/aurora-postgres/AuroraPostgresDataSourceOptions"
import type { BetterSqlite3DataSourceOptions } from "../driver/better-sqlite3/BetterSqlite3DataSourceOptions"
import type { CapacitorDataSourceOptions } from "../driver/capacitor/CapacitorDataSourceOptions"
import type { CockroachDataSourceOptions } from "../driver/cockroachdb/CockroachDataSourceOptions"
import type { CordovaDataSourceOptions } from "../driver/cordova/CordovaDataSourceOptions"
import type { ExpoDataSourceOptions } from "../driver/expo/ExpoDataSourceOptions"
import type { MongoDataSourceOptions } from "../driver/mongodb/MongoDataSourceOptions"
import type { MysqlDataSourceOptions } from "../driver/mysql/MysqlDataSourceOptions"
import type { NativescriptDataSourceOptions } from "../driver/nativescript/NativescriptDataSourceOptions"
import type { OracleDataSourceOptions } from "../driver/oracle/OracleDataSourceOptions"
import type { PostgresDataSourceOptions } from "../driver/postgres/PostgresDataSourceOptions"
import type { ReactNativeDataSourceOptions } from "../driver/react-native/ReactNativeDataSourceOptions"
import type { SapDataSourceOptions } from "../driver/sap/SapDataSourceOptions"
import type { SpannerDataSourceOptions } from "../driver/spanner/SpannerDataSourceOptions"
import type { SqljsDataSourceOptions } from "../driver/sqljs/SqljsDataSourceOptions"
import type { SqlServerDataSourceOptions } from "../driver/sqlserver/SqlServerDataSourceOptions"
/**
* DataSourceOptions is an interface with settings and options for specific DataSource.
*/
export type DataSourceOptions =
| AuroraMysqlDataSourceOptions
| AuroraPostgresDataSourceOptions
| BetterSqlite3DataSourceOptions
| CapacitorDataSourceOptions
| CockroachDataSourceOptions
| CordovaDataSourceOptions
| ExpoDataSourceOptions
| MongoDataSourceOptions
| MysqlDataSourceOptions
| NativescriptDataSourceOptions
| OracleDataSourceOptions
| PostgresDataSourceOptions
| ReactNativeDataSourceOptions
| SapDataSourceOptions
| SpannerDataSourceOptions
| SqljsDataSourceOptions
| SqlServerDataSourceOptions