mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-10 00:42:12 -05:00
8 lines
300 B
TypeScript
8 lines
300 B
TypeScript
import { apiRequestPut } from 'mastodon/api';
|
|
import type { ApiMediaAttachmentJSON } from 'mastodon/api_types/media_attachments';
|
|
|
|
export const apiUpdateMedia = (
|
|
id: string,
|
|
params?: { description?: string; focus?: string },
|
|
) => apiRequestPut<ApiMediaAttachmentJSON>(`v1/media/${id}`, params);
|