Files
oh-my-opencode/dist/shared/first-message-variant.d.ts
T

12 lines
316 B
TypeScript
Raw Normal View History

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 {};