orca/src/main/daemon/daemon-foreground-process-p...

12 lines
259 B
TypeScript

export type GetForegroundProcessRequest = {
id: string
type: 'getForegroundProcess'
payload: {
sessionId: string
}
}
export type ConfirmForegroundProcessRequest = Omit<GetForegroundProcessRequest, 'type'> & {
type: 'confirmForegroundProcess'
}