Skip to content

Commit

Permalink
CB-3197 fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
devnaumov committed Sep 28, 2023
1 parent 0fb44e2 commit e0a8072
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export interface ITreeNodeState {
disabled?: boolean;
loading?: boolean;
selected?: boolean;
/** It is true when the node is neither selected nor unselected, used to indicate a mixed or partial selection in a group of sub-options */
/** It is true when the node is neither selected nor unselected, used to indicate a mixed or partial selection in a group of sub-options */
indeterminateSelected?: boolean;
externalExpanded?: boolean;
expanded?: boolean;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ export interface IDatabaseDataSource<TOptions, TResult extends IDatabaseDataResu
setExecutionContext: (context: IConnectionExecutionContext | null) => this;

retry: () => Promise<void>;
/** Allows to perform an asynchronous action on the data source, this action will wait previous action to finish and save or load requests. The data source will have a loading and disabled state while performing an action */
/** Allows to perform an asynchronous action on the data source, this action will wait previous action to finish and save or load requests.
* The data source will have a loading and disabled state while performing an action */
runTask: <T>(task: () => Promise<T>) => Promise<T>;
requestData: () => Promise<void> | void;
refreshData: () => Promise<void> | void;
Expand Down

0 comments on commit e0a8072

Please sign in to comment.