ibizappctrl-ui-service.ts 439 字节
import IBIZAPPCTRLUIServiceBase from './ibizappctrl-ui-service-base';

/**
 * 应用部件UI服务对象
 *
 * @export
 * @class IBIZAPPCTRLUIService
 */
export default class IBIZAPPCTRLUIService extends IBIZAPPCTRLUIServiceBase {

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

}