import UIService from '../ui-service'; import { UIActionTool } from '@/utils'; import { Subject } from 'rxjs'; /** * 特别约定库UI服务对象基类 * * @export * @class TBYDKUIServiceBase */ export default class TBYDKUIServiceBase extends UIService { /** * Creates an instance of TBYDKUIServiceBase. * * @param {*} [opts={}] * @memberof TBYDKUIServiceBase */ constructor(opts: any = {}) { super(opts); } }