Adding base implementation for googlesheets integration.

This commit is contained in:
mike12345567 2023-05-22 13:57:56 +01:00
parent ad358fe1ca
commit d6c07f47b6
1 changed files with 5 additions and 0 deletions

View File

@ -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 = {