Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/flowscripter_dynamic_plugin_framework/src/plugin_manager/registry/ExtensionPointRegistry.ts>default

Dynamic plugin framework for Deno based on Javascript Modules and import() function.
Latest
interface default
import { type default } from "https://deno.land/x/flowscripter_dynamic_plugin_framework@v1.1.4/src/plugin_manager/registry/ExtensionPointRegistry.ts";

A registry of Extension Points.

Methods

register(extensionPoint: string): Promise<void>

Register a specified Extension Point.

getAll(): Promise<ReadonlySet<string>>

Return all registered Extension Points.

isRegistered(extensionPoint: string): Promise<boolean>

Returns true if the specified Extension Point has been registered.