say I have a data structure like ```ts declare const tasks: {title: string, longDescription:string}[] ``` What is the recommended approach to fuzzy search over both title and string, but prioritise matches based on title?
say I have a data structure like
What is the recommended approach to fuzzy search over both title and string, but prioritise matches based on title?