Files
oh-my-opencode/dist/shared/first-message-variant.d.ts
T
2026-03-14 04:56:50 +00:00

12 lines
316 B
TypeScript

type SessionInfo = {
id?: string;
parentID?: string;
};
export declare function createFirstMessageVariantGate(): {
markSessionCreated(info?: SessionInfo): void;
shouldOverride(sessionID?: string): boolean;
markApplied(sessionID?: string): void;
clear(sessionID?: string): void;
};
export {};