mirror of
https://github.com/mastodon/mastodon.git
synced 2026-01-21 23:29:11 +00:00
6 lines
233 B
TypeScript
6 lines
233 B
TypeScript
import { apiRequestGet } from 'mastodon/api';
|
|
import type { ApiContextJSON } from 'mastodon/api_types/statuses';
|
|
|
|
export const apiGetContext = (statusId: string) =>
|
|
apiRequestGet<ApiContextJSON>(`v1/statuses/${statusId}/context`);
|