fix: update types from code review

This commit is contained in:
Ephraim Atta-Duncan
2023-06-30 23:49:34 +00:00
committed by Mythie
parent a94f447e9e
commit 0de4fe5883
6 changed files with 19 additions and 14 deletions

View File

@ -0,0 +1,5 @@
import { Document, Recipient } from '@documenso/prisma/client';
export type DocumentWithReciepient = Document & {
Recipient: Recipient[];
};