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

example-plugin-api

version build coverage deno doc license: MIT

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:

API Documentation

License

MIT © Flowscripter