UNPKG

@sprucelabs/spruce-cli

Version:

Command line interface for building Spruce skills.

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