Example Usage:
import { BasicDatabase } from "@de44/sheets-stack-core";async function getData( spreadsheetId: string, sheetName: string): Promise<any[]> { const db = await BasicDatabase.instance(); const options = { limit: 2, offset: 1 }; const data = await db.list(spreadsheetId, sheetName, options); return data;} Copy
import { BasicDatabase } from "@de44/sheets-stack-core";async function getData( spreadsheetId: string, sheetName: string): Promise<any[]> { const db = await BasicDatabase.instance(); const options = { limit: 2, offset: 1 }; const data = await db.list(spreadsheetId, sheetName, options); return data;}
Protected
Static
Private
Optional
Generated using TypeDoc
Example Usage: