2
0
Files
bot/packages/bot-engine/src/services/utils.ts

8 lines
266 B
TypeScript
Raw Normal View History

import { Step, TextStep, StepType, TextInputStep } from '../models'
export const isTextStep = (step: Step): step is TextStep =>
step.type === StepType.TEXT
export const isTextInputStep = (step: Step): step is TextInputStep =>
step.type === StepType.TEXT_INPUT