43 lines
No EOL
670 B
TypeScript
43 lines
No EOL
670 B
TypeScript
interface DataResponseList {
|
|
id: string
|
|
rounded: string
|
|
title: string
|
|
dateStart: Date
|
|
dateEnd: Date
|
|
}
|
|
|
|
interface MainList {
|
|
id: string
|
|
rounded: string
|
|
title: string
|
|
date: string
|
|
}
|
|
|
|
interface FormData {
|
|
rounded: string
|
|
dateMeeting: string
|
|
consider: string
|
|
period: string
|
|
file: FileOj[]
|
|
}
|
|
|
|
interface FileOj{
|
|
id:string
|
|
pathName:string
|
|
fileName:string
|
|
}
|
|
|
|
interface FormRef {
|
|
rounded: object | null;
|
|
dateMeeting: object | null;
|
|
consider: object | null;
|
|
period: object | null;
|
|
[key: string]: any;
|
|
}
|
|
export type {
|
|
DataResponseList,
|
|
MainList,
|
|
FormData,
|
|
FormRef,
|
|
FileOj
|
|
} |