aboutsummaryrefslogtreecommitdiffstats
path: root/src/services/graphql/fetchers/topics/fetch-all-topics-slugs.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/services/graphql/fetchers/topics/fetch-all-topics-slugs.ts')
-rw-r--r--src/services/graphql/fetchers/topics/fetch-all-topics-slugs.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/services/graphql/fetchers/topics/fetch-all-topics-slugs.ts b/src/services/graphql/fetchers/topics/fetch-all-topics-slugs.ts
index 1df0039..8af2757 100644
--- a/src/services/graphql/fetchers/topics/fetch-all-topics-slugs.ts
+++ b/src/services/graphql/fetchers/topics/fetch-all-topics-slugs.ts
@@ -1,7 +1,7 @@
import type { GraphQLNodes, Nullable, SlugNode } from '../../../../types';
import { fetchGraphQL, getGraphQLUrl } from '../../../../utils/helpers';
-type TopicsSlugsResponse = {
+export type TopicsSlugsResponse = {
topics: Nullable<GraphQLNodes<SlugNode>>;
};