Skip to content

Commit

Permalink
use correct type in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
duncanbarrigan committed Oct 5, 2023
1 parent a7260d8 commit 6d210a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/classes/google-spreadsheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ The child worksheets (each an instance of [`GoogleSpreadsheetWorksheet`](classes

Property|Type|Description
---|---|---
`sheetsById`| `{ [sheetId: string]: GoogleSpreadsheetWorksheet }` | Child worksheets, keyed by their `sheetId`
`sheetsById`| `{ [sheetId: number]: GoogleSpreadsheetWorksheet }` | Child worksheets, keyed by their `sheetId`
`sheetsByTitle`| `{ [title: string]: GoogleSpreadsheetWorksheet }` | Child worksheets keyed by their `title`<br/>_⚠️ beware of title conflicts_
`sheetsByIndex`| `GoogleSpreadsheetWorksheet[]` |Array of sheets, ordered by their index<br>_this is the order they appear in the Google sheets UI_
`sheetCount`| `number` |Count of child worksheets<br>_same as `doc.sheetsByIndex.length`_
Expand Down

0 comments on commit 6d210a2

Please sign in to comment.