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

11 lines
273 B
TypeScript

export interface GhCliInfo {
installed: boolean;
version: string | null;
path: string | null;
authenticated: boolean;
username: string | null;
scopes: string[];
error: string | null;
}
export declare function getGhCliInfo(): Promise<GhCliInfo>;