Thomas Wilkerling
Thomas Wilkerling
Just use `tokenize: "strict"` within your index options. Also there is a new preset on `Charset.LatinExact` which will switch to case-sensitive matching.
Thanks a lot, all download links are updated
Hi @flycran, I really would like to improve the generic return types. What I theoretically need is something like "conditional types" but I didn't know how to define them. I...
[PR](https://github.com/nextapps-de/flexsearch/pull/497/files#diff-5852555c4533a658f480c604ba625e08bac599f27078ade3d9d65dd52c2d44ae) Great 🙌
@flycran We can continue discussion here. Would be nice if we can do the changes step by step. Probably best is to simplify types accordingly to your suggestion. Then we...
@flycran I've added some more generic properties like `pluck` and `highlight` and I also started with `resolve` (not completed yet). Would be nice if you can take a look into...
@flycran I've added some test scenarios and have some questions. 1. Accordingly to [this message](https://github.com/nextapps-de/flexsearch/issues/342#issuecomment-2772370334) I would like to understand why types needs to be exported by index.d.ts and how...
@flycran I've updated the index.d.ts and the [test file](https://github.com/nextapps-de/flexsearch/blob/master/test/types.ts) It feels a bit messy, probably it could be simplified. I have some issues within the `test/types.ts` file: 1. https://github.com/nextapps-de/flexsearch/blob/master/test/types.ts#L125 when...
@flycran nice 👍, I've also played around with your latest change to get a better understanding. This was really helpful to me. I've added some more example in line 179...
Another issue was solved when fully type the result like here: https://github.com/nextapps-de/flexsearch/blob/master/test/types.ts#L50 ```ts Resolver = new Resolver({ index: index3 }); // index3 is a persistent index ``` But this fails:...