다음을 통해 공유


WaterfallStep type

개별 폭포 단계의 함수 서명입니다.

type WaterfallStep<O extends object = {}> = (step: WaterfallStepContext<O>) => Promise<DialogTurnResult>;
type WaterfallStep<O> = (
  step: WaterfallStepContext<O>
) => Promise<DialogTurnResult>