@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
30 lines (29 loc) • 641 B
TypeScript
declare const _default: {
id: string;
name: string;
description: string;
fields: {
mode: {
type: "select";
label: string;
isRequired: true;
options: {
choices: {
label: string;
value: string;
}[];
};
};
stage: {
type: "select";
label: string;
options: {
choices: {
label: string;
value: string;
}[];
};
};
};
};
export default _default;