2
0
Files
bot/packages/bot-engine/src/models/result.ts
2021-12-22 14:59:07 +01:00

12 lines
209 B
TypeScript

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