Represents a Supported IDE entity.

interface SupportedIde {
    downloadUrl?: string;
    ideType?: SupportedIdeType;
    name?: string;
    protocolHandlerUrl?: string;
    supportedPlatforms?: string[];
}

Properties

downloadUrl?: string

The download URL for the IDE.

The type of the IDE.

name?: string

The name of the IDE.

protocolHandlerUrl?: string

The URL to open the protocol handler for the IDE.

supportedPlatforms?: string[]

A list of SupportedPlatforms.