Interface Protocol

Interface for protocol handling functionality

interface Protocol {
    kernel: Kernel;
    open(uri: string): void;
}

Properties

Methods

Properties

kernel: Kernel

Get the kernel instance

Methods

  • Open a URI with the protocol handler

    Parameters

    • uri: string

      URI to open

    Returns void