Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ExtensionModule

An extension module as viewed from Extraterm.

Hierarchy

  • ExtensionModule

Index

Methods

activate

  • Each extension module must export a function called activate() with the signature below.

    Parameters

    • context: ExtensionContext

      The extension context which this extension is running in.

    Returns any

    The public API of this extension, or null or undefined.

Optional deactivate

  • deactivate(manual: boolean): void
  • Option function which is called if the extension is disabled or the application shutdown.

    Parameters

    • manual: boolean

      True if the user manually disabled the extension.

    Returns void

Generated using TypeDoc