diff --git a/types/office-js-preview/index.d.ts b/types/office-js-preview/index.d.ts index ab0de2fa5a..60bb057b92 100644 --- a/types/office-js-preview/index.d.ts +++ b/types/office-js-preview/index.d.ts @@ -21199,7 +21199,9 @@ declare namespace Excel { */ suspendApiCalculationUntilNextSync(): void; /** - * Suspends sceen updating until the next "context.sync()" is called. + * Suspends screen updating until the next `context.sync()` is called. + * + * **Note**: Don't call `suspendScreenUpdatingUntilNextSync` repeatedly (such as in a loop). Repeated calls will cause the Excel window to flicker. * * [Api set: ExcelApi 1.9] */ diff --git a/types/office-js/index.d.ts b/types/office-js/index.d.ts index d2e7fb10a2..c1b13b5c28 100644 --- a/types/office-js/index.d.ts +++ b/types/office-js/index.d.ts @@ -18339,8 +18339,10 @@ declare namespace Excel { */ suspendApiCalculationUntilNextSync(): void; /** - * Suspends sceen updating until the next "context.sync()" is called. - * + * Suspends screen updating until the next `context.sync()`is called. + * + * **Note**: Don't call `suspendScreenUpdatingUntilNextSync` repeatedly (such as in a loop). Repeated calls will cause the Excel window to flicker. + * * [Api set: ExcelApi 1.9] */ suspendScreenUpdatingUntilNextSync(): void;