From 4e0b931c7ac4a9a7735251bdfb8db5c02fabd712 Mon Sep 17 00:00:00 2001 From: Dan Dascalescu Date: Fri, 14 Feb 2025 06:22:42 +0800 Subject: [PATCH] @types/google-apps-script: add getSheetById to google-apps-script.spreadsheet.d.ts (#71898) --- types/google-apps-script/google-apps-script.spreadsheet.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/google-apps-script/google-apps-script.spreadsheet.d.ts b/types/google-apps-script/google-apps-script.spreadsheet.d.ts index 9c40d2f310b8b2..a87fa41dac0da2 100644 --- a/types/google-apps-script/google-apps-script.spreadsheet.d.ts +++ b/types/google-apps-script/google-apps-script.spreadsheet.d.ts @@ -2302,6 +2302,7 @@ declare namespace GoogleAppsScript { getRecalculationInterval(): RecalculationInterval; getRowHeight(rowPosition: Integer): Integer; getSelection(): Selection; + getSheetById(id: number): Sheet | null; getSheetByName(name: string): Sheet | null; getSheetId(): Integer; getSheetName(): string;