Skip to content

Commit

Permalink
Fix the type error
Browse files Browse the repository at this point in the history
  • Loading branch information
jdneo committed Nov 17, 2020
1 parent ddbb10c commit 65f957c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/dependencyDataProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class DependencyDataProvider implements TreeDataProvider<ExplorerNode> {
public onDidChangeTreeData: Event<ExplorerNode | null | undefined> = this._onDidChangeTreeData.event;

private _rootItems: ExplorerNode[] = null;
private _refreshDelayTrigger: ((element?: ExplorerNode) => void) & _.Cancelable;
private _refreshDelayTrigger: _.DebouncedFunc<((element?: ExplorerNode) => void)>;

constructor(public readonly context: ExtensionContext) {
context.subscriptions.push(commands.registerCommand(Commands.VIEW_PACKAGE_REFRESH, (debounce?: boolean, element?: ExplorerNode) =>
Expand Down

0 comments on commit 65f957c

Please sign in to comment.