@@ -0,0 +1,7 @@
+export const SearchTypes = {
+ FORWARD: 'forward',
+ PARTIAL: 'partial',
+ BACKWORD: 'backword',
+} as const;
+
+export type SearchType = typeof SearchTypes[keyof typeof SearchTypes];