add Ko-fi bean
This commit is contained in:
21
frontend/src/types/journal.ts
Normal file
21
frontend/src/types/journal.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
export interface JournalEntry {
|
||||
id: string // UUID
|
||||
runId: number
|
||||
bossResultId: number | null
|
||||
title: string
|
||||
body: string
|
||||
createdAt: string
|
||||
updatedAt: string
|
||||
}
|
||||
|
||||
export interface CreateJournalEntryInput {
|
||||
bossResultId?: number | null
|
||||
title: string
|
||||
body: string
|
||||
}
|
||||
|
||||
export interface UpdateJournalEntryInput {
|
||||
bossResultId?: number | null
|
||||
title?: string
|
||||
body?: string
|
||||
}
|
||||
Reference in New Issue
Block a user