mastodon/app/javascript/mastodon/api/async_refreshes.ts
2025-07-23 13:42:07 +00:00

6 lines
248 B
TypeScript

import { apiRequestGet } from 'mastodon/api';
import type { ApiAsyncRefreshJSON } from 'mastodon/api_types/async_refreshes';
export const apiGetAsyncRefresh = (id: string) =>
apiRequestGet<ApiAsyncRefreshJSON>(`v1_alpha/async_refreshes/${id}`);