ต่อ api download การประชุม

This commit is contained in:
AnandaTon 2023-12-22 17:37:36 +07:00
parent dce124735a
commit ee0233a27e
3 changed files with 137 additions and 90 deletions

View file

@ -13,7 +13,14 @@ interface MainList {
date: string;
}
interface ArrayFileList {
id: string;
pathName: string;
fileName: string;
}
interface FormData {
id: string;
rounded: string;
dateMeeting: string;
dateMeetingStart: Date | null;
@ -21,7 +28,7 @@ interface FormData {
consider: string;
period: string;
title: string;
file: FileOj[];
// file: FileOj[];
}
interface FileOj {
@ -38,4 +45,11 @@ interface FormRef {
period: object | null;
[key: string]: any;
}
export type { DataResponseList, MainList, FormData, FormRef, FileOj };
export type {
DataResponseList,
MainList,
FormData,
FormRef,
FileOj,
ArrayFileList,
};