Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IPlugin

Plugin installable in a PluginContainer. There is no concrete API, only an execute method and . It's up to the users to define de Plugin semantics

Hierarchy

  • IPlugin

Index

Properties

Properties

execute

execute: function

Executes this plugin.

param

the data transformed by the previous plugin that this plugin can also transform to be passed to the next one.

returns

if any, the input data provided by the previous plugin, transformed somehow and passed to the next plugin.

Type declaration

    • (input?: any): any
    • Parameters

      • Optional input: any

      Returns any

name

name: string

name used to identify the plugins in the container

Optional priority

priority: number

priority lower numbers will execute before higher numbers

Generated using TypeDoc