@graysham/mixmotion-player
Version:
<h1 align='center'> Mixmotion Player </h1>
17 lines (16 loc) • 439 B
TypeScript
export declare const fetchShows: ({ cloudcastKeyUrl, limit, withExclusives, }: {
cloudcastKeyUrl: string;
limit?: number;
withExclusives?: boolean;
}) => Promise<never[] | {
shows: any[];
label?: undefined;
} | {
label: string | false;
shows: any[];
} | undefined>;
export declare const fetchSearchResults: ({ text, limit, type, }: {
text: string;
limit?: number;
type?: string;
}) => Promise<any>;