Skip to content

Commit

Permalink
Updated comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuznietsov committed Dec 11, 2023
1 parent e147e79 commit 721f028
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions uui-core/src/types/dataSources.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,15 @@ export type IDataSourceView<TItem, TId, TFilter> = {
getSelectedRows(range?: VirtualListRange): DataRowProps<TItem, TId>[];
getSelectedRowsCount(): number;
reload(): void;
/**
* Activates IDataSourceView.
* After view activation, it becomes able to listen to updates.
*/
activate(): void;
/**
* Deactivates IDataSourceView.
* After view deactivation, it becomes impossible to listen to updates.
*/
deactivate(): void;
loadData(): void;
clearAllChecked(): void;
Expand Down

0 comments on commit 721f028

Please sign in to comment.