feat: highlight link to other quest or copy item name in quest details
This commit is contained in:
@ -71,9 +71,14 @@ export interface SyncResult {
|
||||
errors: string[];
|
||||
}
|
||||
|
||||
export type RichSegment =
|
||||
| { type: "Text"; text: string }
|
||||
| { type: "QuestLink"; text: string; href: string };
|
||||
|
||||
export interface QuestStep {
|
||||
index: number;
|
||||
text: string;
|
||||
images: string[];
|
||||
launch_position: string | null;
|
||||
rich_text: RichSegment[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user