fix: typo

This commit is contained in:
lawvs
2022-07-25 18:39:50 +08:00
parent b89d3deb6e
commit c699fd4100

View File

@@ -30,11 +30,11 @@ export interface PageView extends BaseView {
export interface KanbanView extends BaseView {
type: RecastScene.Kanban;
groupBy: RecastPropertyId;
groupBy?: RecastPropertyId;
}
export interface TableView extends BaseView {
type: RecastScene.Kanban;
type: RecastScene.Table;
}
export type RecastView = PageView | KanbanView | TableView;