@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
43 lines (42 loc) • 953 B
TypeScript
declare const _default: {
id: string;
name: string;
description: string;
fields: {
type: {
type: "select";
label: string;
isRequired: true;
options: {
choices: {
value: string;
label: string;
}[];
};
};
nameReadable: {
type: "text";
label: string;
isRequired: true;
hint: string;
};
testDestinationDir: {
type: "text";
label: string;
hint: string;
defaultValue: string;
};
nameCamel: {
type: "text";
label: string;
isRequired: true;
hint: string;
};
namePascal: {
type: "text";
label: string;
hint: string;
};
};
};
export default _default;