1 import { json } from "../call"; 2 import type { Video } from "./type"; 3 4 export const get_videos_video_metadata = (id: string): Promise<Video> => 5 json("GET", `/videos/video-metadata/${id}`);