UNPKG

intentful

Version:

Create Custom Skills with less headache

19 lines (18 loc) 739 B
import { Command, CommandModel, CommandProps } from './command'; import { LabeledRequestHandler } from '../../skill/models'; import { Calculable } from '../../types'; export interface AutoPageCommandModel extends CommandModel { componentId?: string; count?: Calculable<number>; duration?: Calculable<number>; } export interface AutoPageCommandProps extends CommandProps { componentId?: string; count?: Calculable<number>; duration?: Calculable<number>; } export declare class AutoPageCommand extends Command<AutoPageCommandModel, AutoPageCommandProps> { constructor(props: AutoPageCommandProps); commandSpecificModel(): AutoPageCommandModel; commandSpecificRequestHandlers(): LabeledRequestHandler[]; }