docs: fix full-text search (Native FTS) TypeScript doc error (#1992)

Fix

```
Cannot find name 'queryType'.ts(2304)
any
```
This commit is contained in:
ahaapple
2025-01-04 02:36:10 +08:00
committed by GitHub
parent 445a312667
commit 164ce397c2

View File

@@ -50,7 +50,7 @@ Consider that we have a LanceDB table named `my_table`, whose string column `tex
});
await tbl
.search("puppy", queryType="fts")
.search("puppy", "fts")
.select(["text"])
.limit(10)
.toArray();