แก้การแสดงผล

This commit is contained in:
Warunee Tamkoo 2024-01-09 15:41:00 +07:00
parent f93f513e5b
commit c5456f97f4
4 changed files with 23 additions and 13 deletions

View file

@ -1,4 +1,4 @@
export interface StorageFile {
interface StorageFile {
pathname: string
fileName: string
@ -17,4 +17,17 @@ export interface StorageFile {
updatedBy: string
createdAt: string | Date
createdBy: string
author: string
metadata: MetadataObject
}
interface MetadataObject {
subject: string
author: string
position: string
additionalProp1: string
additionalProp3: string
additionalProp2: string
}
export type { StorageFile, MetadataObject }