Skip to content

Commit

Permalink
fix typescript errors
Browse files Browse the repository at this point in the history
  • Loading branch information
DenysVuika authored and eromano committed Dec 23, 2020
1 parent 83df643 commit e4973c3
Showing 1 changed file with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,13 @@ import { BaseEvent } from '@alfresco/adf-core';
import { NodeEntry, Node } from '@alfresco/js-api';

export class NodeEntityEvent extends BaseEvent<NodeEntry> {

value: NodeEntry;

defaultPrevented: boolean;

constructor(nodeEntry: NodeEntry) {
super();
this.value = nodeEntry;
}
}

export class NodeEntryEvent extends BaseEvent<Node> {

value: Node;

defaultPrevented: boolean;

constructor(node: Node) {
super();
this.value = node;
Expand Down

0 comments on commit e4973c3

Please sign in to comment.