first commit

This commit is contained in:
Warunee Tamkoo 2023-12-20 10:04:43 +07:00
commit 288971d1d7
60 changed files with 1546 additions and 0 deletions

View file

@ -0,0 +1,13 @@
interface Noti {
id: string
body: string
receiverUserId: string
type: string
payload: null
isOpen: false
receiveDate: Date | null
openDate: null
createdFullName: string
}
export type { Noti }