dst-config-auth-service.ts 479 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
import DstConfigAuthServiceBase from './dst-config-auth-service-base';


/**
 * 配置权限服务对象
 *
 * @export
 * @class DstConfigAuthService
 * @extends {DstConfigAuthServiceBase}
 */
export default class DstConfigAuthService extends DstConfigAuthServiceBase {

    /**
     * Creates an instance of  DstConfigAuthService.
     * 
     * @param {*} [opts={}]
     * @memberof  DstConfigAuthService
     */
    constructor(opts: any = {}) {
        super(opts);
    }


}