Files
oh-my-opencode/dist/plugin/session-status-normalizer.d.ts
T

9 lines
214 B
TypeScript
Raw Normal View History

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