mirror of
https://github.com/mastodon/mastodon.git
synced 2025-09-07 18:31:07 +00:00
6 lines
248 B
TypeScript
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}`);
|