5 lines
248 B
TypeScript
5 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}`);
|