@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
47 lines (46 loc) • 1.08 kB
TypeScript
declare const _default: {
id: string;
name: string;
description: string;
fields: {
shouldReportWhileRunning: {
type: "boolean";
label: string;
hint: string;
defaultValue: true;
};
pattern: {
type: "text";
label: string;
hint: string;
};
inspect: {
type: "number";
label: string;
hint: string;
};
shouldHoldAtStart: {
type: "boolean";
label: string;
defaultValue: false;
};
shouldReturnImmediately: {
type: "boolean";
label: string;
isPrivate: true;
defaultValue: false;
hint: string;
};
watchMode: {
type: "select";
label: string;
options: {
choices: {
value: string;
label: string;
}[];
};
};
};
};
export default _default;