@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
29 lines (28 loc) • 651 B
TypeScript
declare const _default: {
id: string;
description: string;
fields: {
id: {
label: "Id";
type: "id";
isRequired: true;
options: undefined;
};
casualName: {
label: "Casual name";
type: "text";
isRequired: true;
hint: "The name you can use when talking to this person.";
options: undefined;
};
token: {
type: "text";
isRequired: true;
};
isLoggedIn: {
type: "boolean";
label: string;
};
};
};
export default _default;