From 85f0f8ea3686a1a0e181c82b53c46283b24b61fc Mon Sep 17 00:00:00 2001 From: Robbie Wagner Date: Tue, 20 Feb 2024 09:15:10 -0500 Subject: [PATCH] Update power-select.d.ts --- types/ember-power-select/components/power-select.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/ember-power-select/components/power-select.d.ts b/types/ember-power-select/components/power-select.d.ts index d59a71f..ea2f2bd 100644 --- a/types/ember-power-select/components/power-select.d.ts +++ b/types/ember-power-select/components/power-select.d.ts @@ -78,7 +78,7 @@ declare module 'ember-power-select/components/power-select' { noMatchesMessage?: string; noMatchesMessageComponent?: SafeComponentStringOrComponent; onBlur?: (select: Select, event: FocusEvent) => void; - onChange: (selection: O, select: Select, event?: Event) => void; + onChange: (selection: O, select?: Select, event?: Event) => void; onClose?: (select: Select, e: Event) => boolean | undefined; onFocus?: (select: Select, event: FocusEvent) => void; onInput?: (term: string, select: Select, e: Event) => string | false | void;