UNPKG

@sprucelabs/spruce-cli

Version:

Command line interface for building Spruce skills.

18 lines (17 loc) 483 B
import AbstractFeature from '../AbstractFeature'; import { FeatureCode } from '../features.types'; export default class PersonFeature extends AbstractFeature { code: FeatureCode; nameReadable: string; description: string; actionsDir: string; isInstalled: () => Promise<boolean>; } declare module '../../features/features.types' { interface FeatureMap { person: PersonFeature; } interface FeatureOptionsMap { person: undefined; } }