Spaces:
Sleeping
Sleeping
Sync from enhance: d795216 feat: implement patch response parser for search and replace functionality
9bd4242 | 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 | |
| } | |