UNPKG

@interopio/desktop-cli

Version:

CLI tool for setting up, building and packaging io.Connect Desktop projects

12 lines 317 B
export interface ComponentReference { name: string; version: string; } export interface Component { name: string; version: string; platform: SupportedPlatforms; downloadUrl: string; } export type SupportedPlatforms = 'win32' | 'darwin' | 'darwin-arm64'; //# sourceMappingURL=component.d.ts.map