Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/flowscripter_dynamic_plugin_framework/src/plugin_manager/util/PluginLoader.ts>PluginLoadResult

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

Result of a loadPlugin invocation.

Properties

isValidPlugin: boolean

true if the module at the specified URL is a valid Plugin implementation.

plugin: Plugin | undefined

Populated with the Plugin object if PluginLoadResult.isValidPlugin is true

optional
error: Error

Populated if PluginLoadResult.isValidPlugin is false