api upload

This commit is contained in:
Thanit Konmek 2023-04-05 14:02:36 +07:00
parent b42d797c78
commit 9eaccb74e0
3 changed files with 203 additions and 27 deletions

View file

@ -99,6 +99,13 @@ interface zipCodeOption {
zipCode: string | null
}
interface uploadType {
id: String
fileName: String
fileSize: number
fileType: String
}
interface ExamCard {
id: string
title: string
@ -300,5 +307,6 @@ export type {
Address,
zipCodeOption,
Occupation,
ExamCard
ExamCard,
uploadType
}