/ src / api / videos / official.ts
official.ts
1  import { json } from "../call";
2  import type { Video } from "./type";
3  
4  export type VideosOfficial200 = Array<Video>;
5  
6  export const get_videos_official = (): Promise<VideosOfficial200> =>
7    json("GET", "/videos/official");