mirror of
https://github.com/baptisteArno/typebot.io.git
synced 2026-06-19 21:04:33 +08:00
13 lines
261 B
TypeScript
13 lines
261 B
TypeScript
import { Answer as AnswerFromPrisma } from 'db'
|
|
|
|
export type Answer = Omit<
|
|
AnswerFromPrisma,
|
|
'resultId' | 'createdAt' | 'storageUsed'
|
|
> & { storageUsed?: number }
|
|
|
|
export type Stats = {
|
|
totalViews: number
|
|
totalStarts: number
|
|
totalCompleted: number
|
|
}
|