fix: Fix non-string-valeus

This commit is contained in:
Mason Rogers 2021-12-27 15:58:25 +00:00
parent 9c9aded8b2
commit 824eca6f81

View file

@ -11,7 +11,7 @@ export interface Choice {
label: string;
placeholder?: boolean;
selected?: boolean;
value: string;
value: any;
score?: number;
choices?: Choice[];
}