@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
20 lines (19 loc) • 618 B
TypeScript
import { FileDescription } from '../../types/cli.types';
import AbstractFeature from '../AbstractFeature';
import { FeatureCode } from '../features.types';
export default class EventContractFeature extends AbstractFeature {
code: FeatureCode;
nameReadable: string;
description: string;
actionsDir: string;
readonly fileDescriptions: FileDescription[];
isInstalled: () => Promise<boolean>;
}
declare module '../../features/features.types' {
interface FeatureMap {
eventContract: EventContractFeature;
}
interface FeatureOptionsMap {
eventContract: undefined;
}
}