MCPcopy Create free account
hub / github.com/PenguLoader/PenguLoader / Action

Interface Action

plugins/src/types.d.ts:16–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14// built-in types
15
16interface Action {
17 id?: string
18 name: string | (() => string)
19 legend?: string | (() => string)
20 tags?: string[]
21 icon?: string
22 group?: string | (() => string)
23 hidden?: boolean
24 perform?: (id?: string) => any
25}
26
27interface CommandBar {
28 addAction: (action: Action) => void

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected