Files
oh-my-opencode/dist/features/tmux-subagent/session-created-event.d.ts
T
2026-03-14 04:56:50 +00:00

15 lines
325 B
TypeScript

export interface SessionCreatedEvent {
type: string;
properties?: {
info?: {
id?: string;
parentID?: string;
title?: string;
};
};
}
export declare function coerceSessionCreatedEvent(input: {
type: string;
properties?: unknown;
}): SessionCreatedEvent;