mirror of
https://github.com/sunrin-ana/2025-SSF-Frontend.git
synced 2026-03-10 02:30:01 +00:00
test
This commit is contained in:
parent
6c6a88931c
commit
afe581ec34
69 changed files with 12702 additions and 25 deletions
16
src/types/Friends.ts
Normal file
16
src/types/Friends.ts
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
interface Friend {
|
||||
id: number,
|
||||
username: string,
|
||||
email: string,
|
||||
created_at: string,
|
||||
profile_image_path: string,
|
||||
is_active: boolean
|
||||
}
|
||||
interface User {
|
||||
id: number,
|
||||
username: string,
|
||||
email: string,
|
||||
created_at: string,
|
||||
profile_image_path: string,
|
||||
is_active: boolean
|
||||
}
|
||||
11
src/types/diary.ts
Normal file
11
src/types/diary.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
interface DiaryEntry {
|
||||
id: number,
|
||||
user_id: number,
|
||||
title: string,
|
||||
content: string,
|
||||
images: string[],
|
||||
category: string,
|
||||
created_at: string,
|
||||
is_submitted: boolean,
|
||||
email_sent: boolean
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue