mirror of
https://github.com/shadcn-ui/taxonomy
synced 2026-05-23 17:28:23 +00:00
7 lines
162 B
TypeScript
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">
|