mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-12-13 15:58:50 +00:00
6 lines
262 B
TypeScript
6 lines
262 B
TypeScript
import { apiRequestGet } from 'flavours/glitch/api';
|
|
import type { ApiAsyncRefreshJSON } from 'flavours/glitch/api_types/async_refreshes';
|
|
|
|
export const apiGetAsyncRefresh = (id: string) =>
|
|
apiRequestGet<ApiAsyncRefreshJSON>(`v1_alpha/async_refreshes/${id}`);
|