import IBIZBOOKAuthServiceBase from './ibizbook-auth-service-base'; /** * 图书权限服务对象 * * @export * @class IBIZBOOKAuthService * @extends {IBIZBOOKAuthServiceBase} */ export default class IBIZBOOKAuthService extends IBIZBOOKAuthServiceBase { /** * Creates an instance of IBIZBOOKAuthService. * * @param {*} [opts={}] * @memberof IBIZBOOKAuthService */ constructor(opts: any = {}) { super(opts); } }