@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
20 lines (19 loc) • 598 B
TypeScript
import AbstractFeature, { FeatureDependency } from '../AbstractFeature';
import { ActionOptions, FeatureCode } from '../features.types';
export default class SandboxFeature extends AbstractFeature {
code: FeatureCode;
nameReadable: string;
description: string;
dependencies: FeatureDependency[];
packageDependencies: never[];
actionsDir: string;
constructor(options: ActionOptions);
}
declare module '../../features/features.types' {
interface FeatureMap {
sandbox: SandboxFeature;
}
interface FeatureOptionsMap {
sandbox: undefined;
}
}