Theia API Documentation v1.65.0
    Preparing search index...

    OpenHandler should be implemented to provide a new opener.

    interface OpenHandler {
        iconClass?: string;
        id: string;
        label?: string;
        canHandle(uri: URI, options?: OpenerOptions): MaybePromise<number>;
        open(uri: URI, options?: OpenerOptions): MaybePromise<undefined | object>;
    }

    Implemented by

    Index

    Properties

    Methods

    Properties

    iconClass?: string

    A css icon class of this handler.

    id: string

    A unique id of this handler.

    label?: string

    A human-readable name of this handler.

    Methods