import MicroComponentAuthServiceBase from './micro-component-auth-service-base'; /** * 微组件权限服务对象 * 基于 APP/src/authservice/%DE_PKGPATH%/%DE_PKGPATH%-auth-service.ts.ftl 生成 * @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); } }