koishi-plugin-spawn-modified 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/index.ts +2 -0
package/lib/index.d.ts
CHANGED
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -33,6 +33,8 @@ export const Config: Schema<Config> = Schema.object({
|
|
|
33
33
|
restrictDirectory: Schema.boolean().description('是否限制在当前目录及子目录内执行命令(禁止 cd 到上级或其他目录)。').default(false),
|
|
34
34
|
})
|
|
35
35
|
|
|
36
|
+
export const schema = Config
|
|
37
|
+
|
|
36
38
|
export interface State {
|
|
37
39
|
command: string
|
|
38
40
|
timeout: number
|