extensionKind property

ExtensionKind extensionKind

The extension kind describes if an extension runs where the UI runs or if an extension runs where the remote extension host runs. The extension kind is defined in the package.json-file of extensions but can also be refined via the remote.extensionKind-setting. When no remote extension host exists, the value is {@linkcode ExtensionKind.UI}.

Implementation

_i3.ExtensionKind get extensionKind =>
    _i3.ExtensionKind.values.byName(_i5.getProperty(
      this,
      'extensionKind',
    ));
void extensionKind=(ExtensionKind value)

Implementation

set extensionKind(_i3.ExtensionKind value) {
  _i5.setProperty(
    this,
    'extensionKind',
    value.name,
  );
}