import { Result as ResultFromPrisma } from 'db' export type Result = Omit & { answers: Answer[] } export type Answer = { blockId: string stepId: string content: string }