Spaces:
Runtime error
Runtime error
File size: 302 Bytes
b2d7d99 42be57d b2d7d99 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
export type Post = {
postId: string
appId: string
prompt: string
previewUrl: string
assetUrl: string
createdAt: string
upvotes: number
downvotes: number
}
export type PostAPIResponse = {
success?: boolean
error?: string
post: Post
}
export type PostAPIRequest = Partial<Post>
|