community / src /types.mts
jbilcke-hf's picture
jbilcke-hf HF Staff
type for the response
457997e
raw
history blame
305 Bytes
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
posts: Post[]
}
export type PostAPIRequest = Partial<Post>