Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion types/components/ember-tbody/component.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export interface EmberTbodyArgs<RowType extends EmberTableRow> {
* 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: () => void }) => void;

/**
* A flag that tells the table to render all of its rows at once.
Expand Down