Interface InstallationResult

Installation result

interface InstallationResult {
    success: boolean;
    installation?: InstalledItem;
    error?: string;
    warnings?: string[];
    dependenciesInstalled?: string[];
}

Properties

success: boolean

Success status

installation?: InstalledItem

Installation record

error?: string

Error message if failed

warnings?: string[]

Warnings

dependenciesInstalled?: string[]

Dependencies installed