UNPKG

intentful

Version:

Create Custom Skills with less headache

14 lines (13 loc) 590 B
import { Command, CommandModel, CommandProps } from './command'; import { LabeledRequestHandler } from '../../skill/models'; export interface ReinflateCommandModel extends CommandModel { preservedSequencers?: string[]; } export interface ReinflateCommandProps extends CommandProps { preservedSequencers?: string[]; } export declare class ReinflateCommand extends Command<ReinflateCommandModel, ReinflateCommandProps> { constructor(props: ReinflateCommandProps); commandSpecificModel(): ReinflateCommandModel; commandSpecificRequestHandlers(): LabeledRequestHandler[]; }