constructor()

in src/dashboard.ts [46:54]


    constructor(opts: DashboardOptions = {}) {
        // @ts-expect-error initialized in init calls below
        this.state = {};
        this._init(opts);
        this._initRows(opts);
        this._initLinks(opts);
        this._initTemplating(opts);
        this._initAnnotations(opts);
    }