mirror of
https://github.com/openai/codex.git
synced 2026-09-17 12:23:33 +00:00
22 lines
324 B
TypeScript
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;
|
|
};
|