ibiz-dashboard.ts 345 字节
Newer Older
ibizdev's avatar
ibizdev committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/**
 * 数据看板
 *
 * @class IBizDashboard
 * @extends {IBizControl}
 */
class IBizDashboard extends IBizControl {

    /**
     * Creates an instance of IBizDashboard.
     * 创建 IBizDashboard 实例
     * 
     * @param {*} [opts={}]
     * @memberof IBizDashboard
     */
    constructor(opts: any = {}) {
        super(opts);
    }
}