Files
codex/shell-tool-mcp/src/types.ts
2025-11-20 17:47:17 -08:00

22 lines
324 B
TypeScript

export type LinuxBashVariant = {
name: string;
ids: string[];
versions: string[];
};
export type DarwinBashVariant = {
name: string;
minDarwin: number;
};
export type OsReleaseInfo = {
id: string;
idLike: string[];
versionId: string;
};
export type BashSelection = {
path: string;
variant: string;
};