UNPKG

@sprucelabs/spruce-cli

Version:

Command line interface for building Spruce skills.

14 lines (13 loc) 420 B
import AbstractAction from '../../AbstractAction'; import { FeatureActionResponse } from '../../features.types'; declare const optionsSchema: { id: string; fields: {}; }; type OptionsSchema = typeof optionsSchema; export default class SetupAction extends AbstractAction<OptionsSchema> { optionsSchema: OptionsSchema; invocationMessage: string; execute(): Promise<FeatureActionResponse>; } export {};