rule-engine-auth-service.ts 493 字节
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);
    }


}