diff --git a/types/components/ember-tbody/component.d.ts b/types/components/ember-tbody/component.d.ts index af7883366..cbb8f5633 100644 --- a/types/components/ember-tbody/component.d.ts +++ b/types/components/ember-tbody/component.d.ts @@ -78,7 +78,7 @@ export interface EmberTbodyArgs { * An action that is called when the row selection of the table changes. * Will be called with either an array or individual row, depending on the checkboxSelectionMode. */ - onSelect?: (rows: RowType[] | RowType) => void; + onSelect?: (rows: RowType[] | RowType, options: { abort: boolean }) => void; /** * A flag that tells the table to render all of its rows at once.