Skip to content

Commit

Permalink
Fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxim-Mazurok committed Aug 22, 2019
1 parent efaf4f5 commit 5ded0cc
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions types/gapi.client.sheets/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Type definitions for non-npm package Google Google Sheets API v4 4.0
// Project: https://developers.google.com/sheets/
// Definitions by: Maxim Mazurok <https://maxim.mazurok.com>
// Definitions by: Bolisov Alexey <https://github.com/Bolisov>
// Maxim Mazurok <https://github.com/Maxim-Mazurok>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3

Expand Down Expand Up @@ -3208,7 +3209,7 @@ declare namespace gapi.client {
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
quotaUser?: string;
/** The A1 notation of the values to retrieve. */
ranges?: tsType | Array<string>;
ranges?: string | string[];
/** The ID of the spreadsheet to retrieve data from. */
spreadsheetId: string;
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
Expand Down Expand Up @@ -3584,7 +3585,7 @@ declare namespace gapi.client {
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
quotaUser?: string;
/** The ranges to retrieve from the spreadsheet. */
ranges?: tsType | Array<string>;
ranges?: string | string[];
/** The spreadsheet to request. */
spreadsheetId: string;
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
Expand Down Expand Up @@ -3647,6 +3648,6 @@ declare namespace gapi.client {
values: ValuesResource;
}

const spreadsheets: sheets.SpreadsheetsResource;
const spreadsheets: SpreadsheetsResource;
}
}

0 comments on commit 5ded0cc

Please sign in to comment.