/ lionsmane-fe / src / types / article.d.ts
article.d.ts
1  import { z } from 'zod';
2  import type { zArticleControllerGetArticleResponse } from '@/client/zod.gen';
3  
4  export type ArticleDetail = z.infer<
5    typeof zArticleControllerGetArticleResponse
6  >;