mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-04 11:35:13 +00:00
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}`);
|