import IBIZCustomAuthServiceBase from './ibizcustom-auth-service-base'; /** * 自定义权限服务对象 * * @export * @class IBIZCustomAuthService * @extends {IBIZCustomAuthServiceBase} */ export default class IBIZCustomAuthService extends IBIZCustomAuthServiceBase { /** * Creates an instance of IBIZCustomAuthService. * * @param {*} [opts={}] * @memberof IBIZCustomAuthService */ constructor(opts: any = {}) { super(opts); } }