import TreeCounterServiceBase from './tree-view-counter-base'; /** * 树视图计数器计数器服务对象 * 基于 APP/src/counter/%APP_COUNTER%/%APP_COUNTER%-counter.ts.ftl 生成 * @export * @class TreeViewCounterService */ export default class TreeCounterService extends TreeCounterServiceBase { /** * Creates an instance of TreeCounterService. * * @param {*} [opts={}] * @memberof TreeCounterService */ constructor(opts: any = {}) { super(opts); } }