iapyang
4 years ago
5 changed files with 31 additions and 1 deletions
@ -0,0 +1,11 @@
|
||||
import { TreeView, TreeValue } from "./treeview"; |
||||
|
||||
export declare class AsyncTree extends TreeView { |
||||
static xtype: string; |
||||
|
||||
_beforeExpandNode<T>(treeId: string, treeNode: T): void; |
||||
|
||||
_join(valueA: TreeValue, valueB: TreeValue): TreeValue; |
||||
|
||||
_getJoinValue(): TreeValue; |
||||
} |
@ -0,0 +1,5 @@
|
||||
import { ListTreeView } from "./listtreeview"; |
||||
|
||||
export declare class ListAsyncTree extends ListTreeView { |
||||
static xtype: string; |
||||
} |
@ -0,0 +1,5 @@
|
||||
import { TreeView } from "../treeview"; |
||||
|
||||
export declare class ListTreeView extends TreeView { |
||||
static xtype: string; |
||||
} |
Loading…
Reference in new issue