import DstSystemUIServiceBase from './dst-system-ui-service-base'; /** * 系统UI服务对象 * * @export * @class DstSystemUIService */ export default class DstSystemUIService extends DstSystemUIServiceBase { /** * Creates an instance of DstSystemUIService. * * @param {*} [opts={}] * @memberof DstSystemUIService */ constructor(opts: any = {}) { super(opts); } }