import { Link, Option, Participant, Poll, User, Vote } from "@prisma/client"; export interface GetPollApiResponse extends Omit { options: Option[]; participants: Array; user: User; role: "admin" | "participant"; links: Array; pollId: string; } export interface GetPollResponse extends Omit { createdAt: string; }