Files
oh-my-opencode/dist/cli/doctor/checks/index.d.ts
T
2026-03-14 04:56:50 +00:00

8 lines
333 B
TypeScript

import type { CheckDefinition } from "../types";
import { gatherSystemInfo } from "./system";
import { gatherToolsSummary } from "./tools";
export type { CheckDefinition };
export * from "./model-resolution-types";
export { gatherSystemInfo, gatherToolsSummary };
export declare function getAllCheckDefinitions(): CheckDefinition[];