community / src /types.mts
jbilcke-hf's picture
jbilcke-hf HF Staff
tiny tweak on the typ
7e9affd
raw
history blame
352 Bytes
export type Post = {
postId: string
appId: string
prompt: string
previewUrl: string
assetUrl: string
createdAt: string
upvotes: number
downvotes: number
}
export type CreatePostResponse = {
success?: boolean
error?: string
post: Post
}
export type GetAppPostsResponse = {
success?: boolean
error?: string
posts: Post[]
}