This commit is contained in:
juyoungk09 2025-09-10 17:31:47 +09:00
commit afe581ec34
69 changed files with 12702 additions and 25 deletions

16
src/types/Friends.ts Normal file
View 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
View 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
}