aboutsummaryrefslogtreecommitdiff
path: root/src/models/controllers/animeSearch.ts
diff options
context:
space:
mode:
authorRitesh Ghosh <[email protected]>2023-08-07 14:54:22 +0530
committerRitesh Ghosh <[email protected]>2023-08-07 14:54:22 +0530
commit10e46b1002dcbbed5202936f1028fae550d9f765 (patch)
tree8ad0d9ac7c69f8f881613f409535506dac8f2677 /src/models/controllers/animeSearch.ts
parente1b37a5b5ee16632e6b32e72e65f6420492e27bc (diff)
downloadaniwatch-api-10e46b1002dcbbed5202936f1028fae550d9f765.tar.xz
aniwatch-api-10e46b1002dcbbed5202936f1028fae550d9f765.zip
feat: added controller request handler types
Diffstat (limited to 'src/models/controllers/animeSearch.ts')
-rw-r--r--src/models/controllers/animeSearch.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/models/controllers/animeSearch.ts b/src/models/controllers/animeSearch.ts
new file mode 100644
index 0000000..20f4680
--- /dev/null
+++ b/src/models/controllers/animeSearch.ts
@@ -0,0 +1,4 @@
+export type AnimeSearchQueryParams = {
+ q?: string;
+ page?: string;
+};