Skip to content

Latest commit

 

History

History
55 lines (31 loc) · 1.31 KB

codearts_plugin_.ExtensionMode.md

File metadata and controls

55 lines (31 loc) · 1.31 KB

@codearts/plugin / "@codearts/plugin" / ExtensionMode

Enumeration: ExtensionMode

"@codearts/plugin".ExtensionMode

The ExtensionMode is provided on the ExtensionContext and indicates the mode the specific extension is running in.

Table of contents

Enumeration Members

Enumeration Members

Development

Development = 2

The extension is running from an --extensionDevelopmentPath provided when launching the editor.

Defined in

index.d.ts:6931


Production

Production = 1

The extension is installed normally (for example, from the marketplace or VSIX) in the editor.

Defined in

index.d.ts:6925


Test

Test = 3

The extension is running from an --extensionTestsPath and the extension host is running unit tests.

Defined in

index.d.ts:6937