UNPKG

instagram-model-ts

Version:

Instagram model

12 lines (11 loc) 236 B
import type { Comment } from "./Comment.ts" import type { User } from "./User.ts" export type Post = { id: string, image: string, description: string, user: User, date: Date, comments: Array<Comment>, likes: Array<User> }