feat(animeProducer): added AnimeProducer controller path & query params type

This commit is contained in:
Ritesh Ghosh
2023-08-13 19:45:05 +05:30
parent fa7b6e70f0
commit 50b66ba08d
+7
View File
@@ -0,0 +1,7 @@
export type AnimeProducerPathParams = {
name?: string;
};
export type AnimeProducerQueryParams = {
page?: string;
};