mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
12 lines
397 B
TypeScript
12 lines
397 B
TypeScript
|
import {DocModel, IRowModel, refRecord, ViewRec} from 'app/client/models/DocModel';
|
||
|
import * as ko from 'knockout';
|
||
|
|
||
|
// Represents a page entry in the tree of pages.
|
||
|
export interface TabBarRec extends IRowModel<"_grist_TabBar"> {
|
||
|
view: ko.Computed<ViewRec>;
|
||
|
}
|
||
|
|
||
|
export function createTabBarRec(this: TabBarRec, docModel: DocModel): void {
|
||
|
this.view = refRecord(docModel.views, this.viewRef);
|
||
|
}
|