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 >;
1 import { z } from 'zod'; 2 import type { zArticleControllerGetArticleResponse } from '@/client/zod.gen'; 3 4 export type ArticleDetail = z.infer< 5 typeof zArticleControllerGetArticleResponse 6 >;