tree-view-service-base.ts 413 字节
Newer Older
neko's avatar
neko committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
import { ControlServiceBase } from './control-service-base';

/**
 * 树部件服务基类
 *
 * @export
 * @class TreeViewServiceBase
 * @extends {ControlServiceBase}
 */
export class TreeViewServiceBase extends ControlServiceBase {

    /**
     * 默认节点分隔符
     *
     * @protected
     * @type {string}
     * @memberof TreeViewServiceBase
     */
    protected TREENODE_SEPARATOR: string = ';';
}