feat: implement document api call

This commit is contained in:
Methapon2001 2023-12-22 13:58:19 +07:00
parent f303ed3041
commit d7d0aa9739
No known key found for this signature in database
GPG key ID: 849924FEF46BD132
2 changed files with 100 additions and 0 deletions

View file

@ -0,0 +1,20 @@
export interface StorageFile {
pathname: string
fileName: string
fileSize: number
fileType: string
title: string
description: string
category: string[]
keyword: string[]
path: string
upload: boolean
updatedAt: string | Date
updatedBy: string
createdAt: string | Date
createdBy: string
}