Skip to content

Commit

Permalink
Use correct typing for rootEventType (#1846)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkszepp authored Jul 31, 2024
1 parent 3fbf150 commit 8fa3bf5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ember-power-select/src/components/power-select.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import { modifier } from 'ember-modifier';
import type {
Dropdown,
DropdownActions,
TRootEventType,
} from 'ember-basic-dropdown/components/basic-dropdown';
import type { CalculatePosition } from 'ember-basic-dropdown/utils/calculate-position';
import { isArray } from '@ember/array';
Expand Down Expand Up @@ -98,7 +99,7 @@ export interface PowerSelectArgs {
triggerClass?: string;
ariaInvalid?: string;
eventType?: string;
rootEventType?: string;
rootEventType?: TRootEventType;
ariaDescribedBy?: string;
calculatePosition?: CalculatePosition;
ebdTriggerComponent?: string | ComponentLike<any>;
Expand Down

0 comments on commit 8fa3bf5

Please sign in to comment.