dotup-ts-node-skills-game
Version:
Develop alexa typescript games
9 lines (8 loc) • 382 B
TypeScript
import { IWorkflowQuestion } from 'dotup-ts-node-skills-workflows';
import { GameModel } from './Game/GameModel';
export declare namespace GameWorkflowQuestions {
const numberOfPlayers: IWorkflowQuestion<GameModel>;
const playerNames: IWorkflowQuestion<GameModel>;
const roundsToPlay: IWorkflowQuestion<GameModel>;
const readyToPlay: IWorkflowQuestion<GameModel>;
}