1
0
Fork 0
mirror of synced 2024-09-19 10:48:30 +12:00
budibase/qa-core/src/types/datasources.ts
2023-05-17 21:32:50 +01:00

22 lines
434 B
TypeScript

export interface DatasourceRequest {
datasource: {
name: string
plus?: boolean
source: string
type: string
config: {
connectionString?: string
db?: string
database?: string
host?: string
password?: string
port?: string
schema?: string
user?: string
defaultHeaders?: {}
rejectUnauthorized?: boolean
url?: string
}
}
fetchSchema: boolean
}