aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRitesh Ghosh <[email protected]>2023-12-17 19:38:04 +0530
committerRitesh Ghosh <[email protected]>2023-12-17 19:38:04 +0530
commit0685c200dd0ccd3de9ed88996b1e55f0e7ce4bf7 (patch)
tree26ccbe1ed82f2e7a7343f3cdb004d72dae6301e7 /src
parentcaec8b684d0afb5fb97ea6fd5a03e8001e2db648 (diff)
downloadaniwatch-api-0685c200dd0ccd3de9ed88996b1e55f0e7ce4bf7.tar.xz
aniwatch-api-0685c200dd0ccd3de9ed88996b1e55f0e7ce4bf7.zip
feat(estimatedSchedule): add `/schedule` endpoint controller query params type
Diffstat (limited to 'src')
-rw-r--r--src/models/controllers/estimatedSchedule.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/models/controllers/estimatedSchedule.ts b/src/models/controllers/estimatedSchedule.ts
new file mode 100644
index 0000000..e732aaa
--- /dev/null
+++ b/src/models/controllers/estimatedSchedule.ts
@@ -0,0 +1,3 @@
+export type EstimatedScheduleQueryParams = {
+ date?: string;
+};