@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
86 lines (85 loc) • 2.32 kB
TypeScript
declare const _default: {
id: string;
name: string;
importsWhenLocal: string[];
fields: {
files: {
type: "schema";
isArray: true;
options: {
schema: {
id: string;
fields: {
name: {
type: "text";
isRequired: true;
};
path: {
type: "text";
isRequired: true;
};
description: {
type: "text";
};
action: {
type: "select";
isRequired: true;
options: {
choices: {
label: string;
value: string;
}[];
};
};
};
};
};
};
headline: {
type: "text";
};
hints: {
type: "text";
isArray: true;
};
summaryLines: {
type: "text";
isArray: true;
};
errors: {
type: "raw";
isArray: true;
options: {
valueType: string;
};
};
meta: {
type: "raw";
options: {
valueType: string;
};
};
packagesInstalled: {
type: "schema";
isArray: true;
options: {
schema: {
id: string;
fields: {
name: {
type: "text";
isRequired: true;
};
version: {
type: "text";
};
isDev: {
type: "boolean";
};
};
};
};
};
};
};
export default _default;