There was an error while loading. Please reload this page.
DOCS • API • Database API
Get the list of tables.
database.tables(): Promise<Array<string>>;
Get the list of tables:
const tables = await database.tables(); console.log(tables); // ['table_1', 'table_2']