SearchResult

interface SearchResult {
    hasMore: boolean;
    nextCursor?: string;
    shows: Show[];
}

Properties

hasMore: boolean

Whether there are more shows available.

SearchResult

nextCursor?: string

Cursor value to pass to get the next set of shows.

SearchResult

shows: Show[]

Array of shows.

SearchResult