Files
opencode-plugin-tmux-utils/dist/features/tmux-subagent/session-created-event.d.ts
Dmytro Stanchiev 15be750b5c need dist for plugins
Signed-off-by: Dmytro Stanchiev <git@dmytros.dev>
2026-04-19 19:15:51 -04: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;