Skip to content

Commit c762cdd

Browse files
committed
feat(stemming): add type for stemming dictionary word
1 parent daa53ac commit c762cdd

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: typesense/api/types.go

+5
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,8 @@ type ImportDocumentResponse struct {
55
Error string `json:"error"`
66
Document string `json:"document"`
77
}
8+
9+
type StemmingDictionaryWord struct {
10+
Root string `json:"root"`
11+
Word string `json:"word"`
12+
}

0 commit comments

Comments
 (0)