feat(home): add spotlight search functionality
This commit is contained in:
16
src/types/search.ts
Normal file
16
src/types/search.ts
Normal file
@ -0,0 +1,16 @@
|
||||
export type SearchItem =
|
||||
| {
|
||||
type: "sheet";
|
||||
id: string;
|
||||
title: string;
|
||||
description?: string;
|
||||
status?: string;
|
||||
group: string;
|
||||
}
|
||||
| {
|
||||
type: "route";
|
||||
title: string;
|
||||
description?: string;
|
||||
route: string;
|
||||
group: string;
|
||||
};
|
||||
Reference in New Issue
Block a user