插件配置
字数
45 字
阅读时间
1 分钟
WIP
本文档正在编写中……
ts
import { Schema } from '@inpageedit/core'
ctx.plugin({
PreferencesSchema: Schema.object({
foo: Schema.string().description('Foo description'),
}),
PreferencesDefaults: {
foo: 'default foo value',
},
})