From ad42d080c1a40bf8b1116eae6d9f82d3c7f0aa2e Mon Sep 17 00:00:00 2001 From: Sid-80 <101277141+Sid-80@users.noreply.github.com> Date: Sat, 11 Feb 2023 21:24:59 +0530 Subject: [PATCH] Issue #5049 Ace.d.ts: Autocomplete not working because of missing type declaration of TextInput.setAriaOptions --- ace.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ace.d.ts b/ace.d.ts index a1774d518d8..82ef3f998ac 100644 --- a/ace.d.ts +++ b/ace.d.ts @@ -943,3 +943,7 @@ export const Range: { fromPoints(start: Ace.Point, end: Ace.Point): Ace.Range; comparePoints(p1: Ace.Point, p2: Ace.Point): number; }; +export interface TextInput { + resetSelection(): void; + setAriaOption(activeDescendant: string, role: string): void; +} \ No newline at end of file