Skip to content

Commit 8b733d7

Browse files
committed
fix: ReducerCollectionView should extend BaseCollectionView
1 parent f8091e1 commit 8b733d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/notion-types/src/collection-view.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ export interface CalendarCollectionView extends BaseCollectionView {
124124
// TODO
125125
}
126126

127-
export interface ReducerCollectionView {
128-
type: 'reducer',
127+
export interface ReducerCollectionView extends BaseCollectionView {
128+
type: 'reducer'
129129
reducerResults: {
130130
collection_group_results: object
131131
}
@@ -138,4 +138,4 @@ export type CollectionView =
138138
| ListCollectionView
139139
| BoardCollectionView
140140
| CalendarCollectionView
141-
| ReducerCollectionView
141+
| ReducerCollectionView

0 commit comments

Comments
 (0)