feat: add types to user search

This commit is contained in:
TobyG74 2024-03-29 20:06:28 +07:00
parent 2e15d88758
commit 7b988d7f12

View File

@ -0,0 +1,17 @@
export type TiktokUserSearchResponse = {
status: "success" | "error"
message?: string
result?: Result[]
}
export type Result = {
uid: string
username: string
nickname: string
signature: string
avatarThumb: string
followerCount: number
isVerified: boolean
secUid: string
url: string
}