taxonomy/lib/models.ts
2022-10-26 17:18:06 +04:00

7 lines
162 B
TypeScript

import { Post } from ".prisma/client"
export type SelectFields<T> = {
[K in keyof T]?: true
}
export type PostItem = Pick<Post, "id" | "title" | "published">