import MicroComponentAuthServiceBase from './micro-component-auth-service-base'; /** * 微组件权限服务对象 * * @export * @class MicroComponentAuthService * @extends {MicroComponentAuthServiceBase} */ export default class MicroComponentAuthService extends MicroComponentAuthServiceBase { /** * Creates an instance of MicroComponentAuthService. * * @param {*} [opts={}] * @memberof MicroComponentAuthService */ constructor(opts: any = {}) { super(opts); } }