10 lines
212 B
TypeScript
10 lines
212 B
TypeScript
import { Answer as AnswerFromPrisma } from 'db'
|
|
|
|
export type Answer = Omit<AnswerFromPrisma, 'resultId' | 'createdAt'>
|
|
|
|
export type Stats = {
|
|
totalViews: number
|
|
totalStarts: number
|
|
completionRate: number
|
|
}
|