@bradgarropy/captivate-sdk
Version:
🎤 captivate sdk
7 lines (6 loc) • 411 B
TypeScript
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 };