7 lines
		
	
	
	
		
			300 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			7 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);
 |