29 lines
660 B
TypeScript
29 lines
660 B
TypeScript
export type DownloadOs = 'macos' | 'windows' | 'linux';
|
|
export type DownloadArch = 'arm64' | 'x64' | 'universal';
|
|
|
|
export const downloadAssets = [
|
|
{
|
|
id: 'macos',
|
|
os: 'macos',
|
|
arch: 'universal',
|
|
label: 'macOS',
|
|
archLabel: 'Apple Silicon / Intel',
|
|
fileName: 'Claude-Agent-Teams-UI-arm64.dmg',
|
|
},
|
|
{
|
|
id: 'windows-x64',
|
|
os: 'windows',
|
|
arch: 'x64',
|
|
label: 'Windows',
|
|
archLabel: '64-bit',
|
|
fileName: 'Claude-Agent-Teams-UI-Setup.exe',
|
|
},
|
|
{
|
|
id: 'linux-appimage',
|
|
os: 'linux',
|
|
arch: 'x64',
|
|
label: 'Linux',
|
|
archLabel: '64-bit',
|
|
fileName: 'Claude-Agent-Teams-UI.AppImage',
|
|
},
|
|
] as const;
|