enuchi/gas-types-detailed

BigQuery types are wrong

Closed this issue · 3 comments

The types for BigQuery are incorrect because they declare Bigquery whereas it should be BigQuery.

Please note @types/google-apps-script does this correctly. Which is consistent with the official example.

I was able to fix this by adding declare const BigQuery: typeof Bigquery; in my code, so I think it just needs a renaming.

Sounds good, nice catch. I'll take a look.

Should be fixed by #4. Try installing gas-types-detailed@1.1.1.

Yes that works, thank you!