24 lines
479 B
TypeScript
24 lines
479 B
TypeScript
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);
|
|
}
|
|
|
|
|
|
} |