Interface ExtensionOptions

Options passed top the registerExtension.

interface ExtensionOptions {
    module?: ExtensionModule<unknown>;
    pathResolver?: ExtensionPathResolver;
}

Properties

module?: ExtensionModule<unknown>

Extension module. Defaults to the result of importing the path given by the value of the main setting in the extension manifest.

pathResolver?: ExtensionPathResolver

Function that resolves relative extension paths. Defaults to the same option in FrameworkOptions.

Generated using TypeDoc