File size: 438 Bytes
96395bf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
export interface DialogueProps {
value: { speaker: string; text: string }[] | string;
buttons: string[];
ui_mode: "dialogue" | "text" | "both";
max_lines: number;
tags: string[];
separator: string;
color_map: { [key: string]: string };
speakers: string[];
info: string;
placeholder: string;
submit_btn: string | boolean;
}
export interface DialogueEvents {
change: never;
input: never;
submit: never;
clear_status: any;
}
|