aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRitesh Ghosh <[email protected]>2023-08-13 19:35:47 +0530
committerRitesh Ghosh <[email protected]>2023-08-13 19:35:47 +0530
commit1c7799eeaac4af40467b6d3a53d9c5f0af77bb64 (patch)
treee8860006fb0c6bb2c3b0823278852f9e6c8b1b35 /src
parentc9325f4b66f02d4c238604e0b37cb1618ae1f83e (diff)
downloadaniwatch-api-1c7799eeaac4af40467b6d3a53d9c5f0af77bb64.tar.xz
aniwatch-api-1c7799eeaac4af40467b6d3a53d9c5f0af77bb64.zip
feat(animeSearchSuggestion): added `animeSearchSuggestion` query param type
Diffstat (limited to 'src')
-rw-r--r--src/models/controllers/animeSearchSuggestion.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/models/controllers/animeSearchSuggestion.ts b/src/models/controllers/animeSearchSuggestion.ts
new file mode 100644
index 0000000..491daa0
--- /dev/null
+++ b/src/models/controllers/animeSearchSuggestion.ts
@@ -0,0 +1,3 @@
+export type AnimeSearchSuggestQueryParams = {
+ q?: string;
+};