1 2 3 4 5 6
import { Company, User } from "prisma/generated/client"; export type Credential = User & { company: Company; token: string; };