UNPKG

@bradgarropy/captivate-sdk

Version:
7 lines (6 loc) • 411 B
import { AuthenticatedUser, Media, Show } from "./types"; declare const getMedia: (token: AuthenticatedUser["token"], mediaId: Media["id"]) => Promise<Media>; declare const uploadMedia: () => void; declare const getShowMedia: (token: AuthenticatedUser["token"], showId: Show["id"]) => Promise<Media[]>; declare const searchShowMedia: () => void; export { getMedia, getShowMedia, searchShowMedia, uploadMedia };