forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~TELLER/fineui:master to master * commit 'ce8c17c1df220208cc4dea8043f2af31258e10cb': REPORT-30618 feat: 类型描述es6
Teller
5 years ago
2 changed files with 39 additions and 0 deletions
@ -0,0 +1,37 @@ |
|||||||
|
import { _Widget } from "../../core/widget"; |
||||||
|
|
||||||
|
export interface _AbstractTreeValueChooser extends _Widget { |
||||||
|
_valueFormatter: (v: string) => string; |
||||||
|
|
||||||
|
_initData: (items: any[]) => void; |
||||||
|
|
||||||
|
_itemsCreator: (options: any, callback: Function) => void; |
||||||
|
|
||||||
|
_reqDisplayTreeNode: (options: any, callback: Function) => void; |
||||||
|
|
||||||
|
_reqSelectedTreeNode: (options: any, callback: Function) => void; |
||||||
|
|
||||||
|
_reqAdjustTreeNode: (options: any, callback: Function) => void; |
||||||
|
|
||||||
|
_reqInitTreeNode: (options: any, callback: Function) => void; |
||||||
|
|
||||||
|
_reqTreeNode: (options: any, callback: Function) => void; |
||||||
|
|
||||||
|
_getAddedValueNode: (parentValues: any[], selectedValues: any) => any[]; |
||||||
|
|
||||||
|
_getNode: (selectedValues: any, parentValues: any[]) => any; |
||||||
|
|
||||||
|
_deleteNode: (selectedValues: any, values: any[]) => void; |
||||||
|
|
||||||
|
_buildTree: (jo: any, values: any) => void; |
||||||
|
|
||||||
|
_isMatch: (parentValues: any, value: any, keyword: any) => boolean; |
||||||
|
|
||||||
|
_getTreeNode: (parentValues: any, v: any) => any; |
||||||
|
|
||||||
|
_getChildren: (parentValues: any) => any; |
||||||
|
|
||||||
|
_getAllChildren: (parentValues: any) => any; |
||||||
|
|
||||||
|
_getChildCount: (parentValues: any) => number; |
||||||
|
} |
Loading…
Reference in new issue