Skip to content

Question

Question = NoulQuestion | ChoiceQuestion | ScoreQuestion

Defined in: src/types.ts:124

Any of the three question types.

import { noul, type Question } from "huncho";
const question: Question = noul("Does this need a human within the hour?");
question.type; // "noul" | "choice" | "score"