Skip to main content
Module

x/flowscripter_dynamic_plugin_framework/mod.ts>ExtensionPointRegistry

Dynamic plugin framework for Deno based on Javascript Modules and import() function.
interface ExtensionPointRegistry
import { type ExtensionPointRegistry } from "https://deno.land/x/flowscripter_dynamic_plugin_framework@v1.1.3/mod.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.