Files
oh-my-opencode/dist/features/tmux-subagent/session-created-event.d.ts
T

15 lines
325 B
TypeScript
Raw Normal View History

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