ManimCat / src /studio-agent /persistence /studio-persistence.ts
littlebrian's picture
Sync from enhance: d795216 feat: implement patch response parser for search and replace functionality
9bd4242
Raw
History Blame Contribute Delete
521 Bytes
import type {
StudioMessageStore,
StudioPartStore,
StudioRunStore,
StudioSessionEventStore,
StudioSessionStore,
StudioTaskStore,
StudioWorkResultStore,
StudioWorkStore,
} from '../domain/types'
export interface StudioPersistence {
sessionStore: StudioSessionStore
messageStore: StudioMessageStore
partStore: StudioPartStore
runStore: StudioRunStore
taskStore: StudioTaskStore
workStore: StudioWorkStore
workResultStore: StudioWorkResultStore
sessionEventStore: StudioSessionEventStore
}