fix(types): add missing eventStore prop to ThreePaneLayoutProps

Add eventStore property to ThreePaneLayoutProps interface and import IEventStore to fix TypeScript errors
This commit is contained in:
Gigi
2025-10-09 16:22:06 +01:00
parent 53b3dd1c7f
commit 2dd0711a20

View File

@@ -1,5 +1,6 @@
import React from 'react'
import { RelayPool } from 'applesauce-relay'
import { IEventStore } from 'applesauce-core'
import { BookmarkList } from './BookmarkList'
import ContentPanel from './ContentPanel'
import { HighlightsPanel } from './HighlightsPanel'
@@ -33,6 +34,7 @@ interface ThreePaneLayoutProps {
onOpenSettings: () => void
onRefresh: () => void
relayPool: RelayPool | null
eventStore: IEventStore | null
// Content pane
readerLoading: boolean