google-sheet-apis
Version:
  
29 lines (28 loc) • 610 B
TypeScript
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;
}