You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
300 B
8 lines
300 B
|
4 months ago
|
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);
|