MCPcopy Create free account
hub / github.com/chhoumann/quickadd / isNestedChoiceCommand

Function isNestedChoiceCommand

src/engine/MacroChoiceEngine.ts:95–99  ·  view source on GitHub ↗
(
	command: unknown
)

Source from the content-addressed store, hash-verified

93}
94
95function isNestedChoiceCommand(
96 command: unknown
97): command is INestedChoiceCommand {
98 return hasCommandType(command, CommandType.NestedChoice);
99}
100
101function isEditorCommand(command: unknown): command is IEditorCommand {
102 return hasCommandType(command, CommandType.EditorCommand);

Callers 1

executeCommandsMethod · 0.70

Calls 1

hasCommandTypeFunction · 0.85

Tested by

no test coverage detected