Example plugin API for the dynamic-plugin-framework.
Attributes
Includes Deno configuration
Repository
Current version released
10 months ago
example-plugin-api
Example plugin API for the dynamic-plugin-framework.
Deno Module Usage
import {
EXTENSION_POINT_1,
ExtensionPoint1,
} from "@flowscripter/example-plugin-api";
// ExtensionPoint1 is identified by EXTENSION_POINT_1 identifier
class MyExtensionPointImplementation implements ExtensionPoint1 {
public sayHello(): void {
// greetings...
}
}Development
Lint: deno fmt
Documentation
Overview
classDiagram
class ExtensionPoint1 {
<<interface>>
sayHello()
}Framework API
Refer to the dynamic-plugin-framework for an overview of what this example is demonstrating.
API
Link to auto-generated API docs for the library:
License
MIT © Flowscripter