import { CodeBook, Question, Unit } from "../types"; /** * Codebooks can indicate that certain questions need to be asked * multiple times, e.g., per annotation. If so, the questions * need to be 'unfolded'. * * @param codebook * @param unit * @returns */ export default function unfoldQuestions(codebook: CodeBook, unit: Unit): Question[];