From d5e17bd63c5c339d4ae29e0090f449b2c8364755 Mon Sep 17 00:00:00 2001 From: Geoff Harcourt Date: Sun, 14 Jun 2020 15:44:23 -0400 Subject: [PATCH] fix(TS): fix typo in type definition for suggestions (#642) It appears that in 7f8a15e there was a subtle typo where the lower-case `testid` was misspelled. --- types/suggestions.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/suggestions.d.ts b/types/suggestions.d.ts index e10fcb02..17e48d60 100644 --- a/types/suggestions.d.ts +++ b/types/suggestions.d.ts @@ -27,7 +27,7 @@ export type Method = | 'Title' | 'title' | 'TestId' - | 'testtd' + | 'testid' export function getSuggestedQuery( element: HTMLElement,