import RuleEngineAuthServiceBase from './rule-engine-auth-service-base';
/**
* 规则引擎权限服务对象
*
* @export
* @class RuleEngineAuthService
* @extends {RuleEngineAuthServiceBase}
*/
export default class RuleEngineAuthService extends RuleEngineAuthServiceBase {
/**
* Creates an instance of RuleEngineAuthService.
*
* @param {*} [opts={}]
* @memberof RuleEngineAuthService
*/
constructor(opts: any = {}) {
super(opts);
}
}
-
由 ibizdev 提交于ee9fd85f