public-google-sheets-parser
public-google-sheets-parser copied to clipboard
Get JSONArray from public google sheets with using only spreadsheetId
``` src/scratchpad.ts:4:20 - error TS2351: This expression is not constructable. Type 'typeof import("/Users/jeff/Work/@home/fyi-migration/node_modules/public-google-sheets-parser/@types/index")' has no construct signatures. 4 const parser = new PublicGoogleSheetsParser(process.env.GOOGLE_DEFAULT_SHEET, { sheetName: 'talks' }); ``` Still have...
https://stackoverflow.com/a/53139356/507203  
Hi! I’m trying to parse [1qW7yB9f4vEszL9arzd770rFn4DolV4XJn3ZAQtP02HE](https://docs.google.com/spreadsheets/d/1qW7yB9f4vEszL9arzd770rFn4DolV4XJn3ZAQtP02HE/edit?gid=673351600#gid=673351600), which has two rows in the header. The first is, strictly speaking, metadata for the user; the second row of headers is the one...
- Fix syntax error: remove field initializers from .d.ts - Fix ESM compatibility: use 'export class' instead of 'declare class' - Make useFormat/useFormattedDate optional to match implementation Fixes #55, #57