import { Question } from './Question'; /** * @public * * @typedef {Question> | Question | Promise | T} Answerable */ export type Answerable = Question> | Question | Promise | T;