@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
20 lines • 597 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const schema_1 = require("@sprucelabs/schema");
const commandAbortedSchema = {
id: 'commandAborted',
namespace: 'SpruceCli',
name: 'Command aborted',
fields: {
/** Command. */
'command': {
label: 'Command',
type: 'text',
isRequired: true,
options: undefined
},
}
};
schema_1.SchemaRegistry.getInstance().trackSchema(commandAbortedSchema);
exports.default = commandAbortedSchema;
//# sourceMappingURL=commandAborted.schema.js.map