You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
368 B
10 lines
368 B
import { apiRequestGet, apiRequestPost } from 'mastodon/api'; |
|
import type { ApiPollJSON } from 'mastodon/api_types/polls'; |
|
|
|
export const apiGetPoll = (pollId: string) => |
|
apiRequestGet<ApiPollJSON>(`v1/polls/${pollId}`); |
|
|
|
export const apiPollVote = (pollId: string, choices: string[]) => |
|
apiRequestPost<ApiPollJSON>(`v1/polls/${pollId}/votes`, { |
|
choices, |
|
});
|
|
|