Files
oh-my-opencode/dist/plugin/session-status-normalizer.d.ts
T
2026-03-14 04:56:50 +00:00

9 lines
214 B
TypeScript

type EventInput = {
event: {
type: string;
properties?: Record<string, unknown>;
};
};
export declare function normalizeSessionStatusToIdle(input: EventInput): EventInput | null;
export {};