The id of your plugin, must begin with "hbplugin-".
A decorator to declare a class as being a Hindenburg Plugin. The class must extend either WorkerPlugin or RoomPlugin to be successfully loaded. The version and ordering of your plugin will be taken from your plugin's package.json.
```
The id of your plugin, must begin with "hbplugin-".
The version of your plugin. Note that this is superfluous and as of recent Hindenburg versions, can instead be taken from your plugin's package.json.
Optional
loadOrder: number | "first" | "none" | "last"The ordering that your plugin should be loaded in. Replaced by package.json: "plugin.loadOrder".
Optional
defaultConfig: anyThe default configuration for your plugin. Replaced by package.json: "plugin.defaultConfig".
Generated using TypeDoc
A decorator to declare a class as being a Hindenburg Plugin. The class must extend either WorkerPlugin or RoomPlugin to be successfully loaded. The version and ordering of your plugin will be taken from your plugin's package.json.
Example