Interface ExternalUriOpenerMetadata

Additional metadata about a registered ExternalUriOpener.

interface ExternalUriOpenerMetadata {
    label: string;
    schemes: readonly string[];
}

Properties

Properties

label: string

Text displayed to the user that explains what the opener does.

For example, 'Open in browser preview'

schemes: readonly string[]

List of uri schemes the opener is triggered for.

Currently only http and https are supported.