Files
oh-my-opencode/dist/hooks/runtime-fallback/fallback-bootstrap-model.d.ts
T
2026-03-14 04:56:50 +00:00

11 lines
373 B
TypeScript

import type { OhMyOpenCodeConfig } from "../../config";
type ResolveFallbackBootstrapModelOptions = {
sessionID: string;
source: string;
eventModel?: string;
resolvedAgent?: string;
pluginConfig?: OhMyOpenCodeConfig;
};
export declare function resolveFallbackBootstrapModel(options: ResolveFallbackBootstrapModelOptions): string | undefined;
export {};