Adding base implementation for googlesheets integration.
This commit is contained in:
parent
ad358fe1ca
commit
d6c07f47b6
|
@ -240,6 +240,11 @@ class GoogleSheetsIntegration implements DatasourcePlus {
|
|||
}
|
||||
}
|
||||
|
||||
getTableNames(): Promise<string[]> {
|
||||
// TODO: implement
|
||||
return Promise.resolve([])
|
||||
}
|
||||
|
||||
getTableSchema(title: string, headerValues: string[], id?: string) {
|
||||
// base table
|
||||
const table: Table = {
|
||||
|
|
Loading…
Reference in New Issue