UNPKG

google-sheet-apis

Version:

![npm](https://img.shields.io/npm/v/google-sheet-apis) ![npm](https://img.shields.io/npm/dw/google-sheet-apis) ![npm bundle size](https://img.shields.io/bundlephobia/min/google-sheet-apis)

29 lines (28 loc) 610 B
export interface ParamsResourceSpreadsheetsValuesBatchget { /** * @description the ID of the spreadsheet */ spreadsheetId: string; /** * @description the tab name */ tabName: string; /** * @description the start column */ startColumn: string; /** * @description the end column */ endColumn: string; } export interface GoogleSheetApisProps { /** * @description value of key */ private_key: string; /** * @description service account email address. */ client_email: string; }