chore: frontend types
This commit is contained in:
parent
01e09680c8
commit
213b7562fa
1 changed files with 12 additions and 0 deletions
|
|
@ -316,6 +316,12 @@ export type AdventureEntryItem = {
|
|||
* Story Text
|
||||
*/
|
||||
story_text: string | null;
|
||||
/**
|
||||
* Story Text Linguistic Data
|
||||
*/
|
||||
story_text_linguistic_data: {
|
||||
[key: string]: unknown;
|
||||
} | null;
|
||||
/**
|
||||
* Translation
|
||||
*/
|
||||
|
|
@ -674,6 +680,12 @@ export type EntryDetailResponse = {
|
|||
* Audio File Name
|
||||
*/
|
||||
audio_file_name: string | null;
|
||||
/**
|
||||
* Story Text Linguistic Data
|
||||
*/
|
||||
story_text_linguistic_data: {
|
||||
[key: string]: unknown;
|
||||
} | null;
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue