private tree_widget: ITreeWidget;
private $ghost: JQuery | null;
private drag_element: DragElement | null;
private previous_ghost: IDropHint | null;
private open_folder_timer: number | null;
constructor(tree_widget: ITreeWidget) {
this.tree_widget = tree_widget;
this.hovered_area = null;
this.$ghost = null;
this.hit_areas = [];
this.is_dragging = false;
this.current_item = null;
}
I am encountering an issue with my code while building the application in Visual Studio 2017.