mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-03 21:43:40 -05:00
11 lines
370 B
TypeScript
11 lines
370 B
TypeScript
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,
|
|
});
|