import { UtilServiceBase } from "ibiz-core"; /** * Util服务对象类 * * @export * @class UtilService */ export class UtilService extends UtilServiceBase { /** * Creates an instance of UtilService. * * @param {*} [opts={}] * @memberof UtilService */ constructor(opts: any = {}) { super(opts); } }