MCPcopy Create free account
hub / github.com/Botloader/botloader / Command

Interface Command

components/runtime/src/ts/commands.ts:370–380  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

368 * This should be considered UNSTABLE and might change in the future
369 */
370 export interface Command {
371 name: string;
372 description: string;
373 kind: Internal.CommandType;
374 group?: Group;
375 options?: OptionMap;
376 ackMode: AckMode;
377 ackMessageFlags: MessageFlags;
378 defaultMemberPermissions?: string;
379 cb: (ctx: {}, args: {}) => any;
380 }
381
382 export type OptionType = Option["kind"];
383

Callers 1

pollMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected