diff --git a/src/commands/interface-manager/ParameterParsing.ts b/src/commands/interface-manager/ParameterParsing.ts index 369bcaa6..d02c8426 100644 --- a/src/commands/interface-manager/ParameterParsing.ts +++ b/src/commands/interface-manager/ParameterParsing.ts @@ -114,6 +114,11 @@ makePresentationType({ validator: simpleTypeValidator('boolean', (item: ReadItem) => item === 'true' ? true : item === 'false') }) +makePresentationType({ + name: 'any', + validator: simpleTypeValidator('any', (_item: ReadItem) => true) +}) + /** * Describes a rest parameter for a command. * This consumes any arguments left over in the call to a command