haloforge-plugin-api 0.2.16

Plugin API for HaloForge — traits and types for building native HaloForge plugins
Documentation
1
2
3
4
5
6
7
import { definePlugin, registerPlugin } from "@haloforge/plugin-sdk";
import { TemplatePanel } from "./Panel";
import "./styles.css";

export default registerPlugin("dev.example.template", definePlugin({
  panel: TemplatePanel,
}));