diff --git a/docs/trem/plugin_dev/start.mdx b/docs/trem/plugin_dev/start.mdx index 0b112dd..e02e4b4 100644 --- a/docs/trem/plugin_dev/start.mdx +++ b/docs/trem/plugin_dev/start.mdx @@ -20,6 +20,8 @@ example/ 擴充套件的入口點 +### Class 形式 + ```js class Plugin { #ctx; @@ -36,6 +38,16 @@ class Plugin { module.exports = Plugin; ``` +### Function 形式 + +```js +module.exports = function (ctx) { + ctx.on("load", () => { + const { TREM, logger, MixinManager } = ctx; + }); +}; +``` + ## info.json 定義擴充資訊的文件