added searching functionality

This commit is contained in:
Daniel
2023-05-08 18:05:39 +03:30
parent a2023e19ef
commit 1c45c6934d
6 changed files with 230 additions and 19 deletions
+11
View File
@@ -46,3 +46,14 @@ export interface ExtendedCollection extends Collection {
};
}[];
}
export type SearchSettings = {
query: string;
filter: {
name: boolean;
url: boolean;
title: boolean;
collection: boolean;
tags: boolean;
};
};