bfg-common 1.3.429 → 1.3.430
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4,7 +4,7 @@ export interface UI_I_TreeNodeShort<T = string> {
|
|
|
4
4
|
id: string | number
|
|
5
5
|
type: T
|
|
6
6
|
}
|
|
7
|
-
export interface UI_I_TreeNode<N = UI_I_TreeNodeDuplicate, T = string>
|
|
7
|
+
export interface UI_I_TreeNode<N = UI_I_TreeNodeDuplicate, T = string, D = any>
|
|
8
8
|
extends UI_I_TreeNodeShort<T> {
|
|
9
9
|
state: string | number // TODO только number
|
|
10
10
|
name: string
|
|
@@ -19,4 +19,5 @@ export interface UI_I_TreeNode<N = UI_I_TreeNodeDuplicate, T = string>
|
|
|
19
19
|
modified?: number
|
|
20
20
|
testId?: string
|
|
21
21
|
kind?: number
|
|
22
|
+
data?: D
|
|
22
23
|
}
|