feat: add fuzzy search

This commit is contained in:
Henry
2025-10-01 23:13:22 +01:00
parent bd691017ad
commit f8475b77f1
6 changed files with 2818 additions and 6 deletions

View File

@@ -22,6 +22,8 @@ type SearchResult =
title: string;
description: string | null;
slug: string;
updatedAt: Date | null;
createdAt: Date;
type: "board";
}
| {
@@ -31,6 +33,8 @@ type SearchResult =
boardPublicId: string;
boardName: string;
listName: string;
updatedAt: Date | null;
createdAt: Date;
type: "card";
};