aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/search/video-playlists-search-query.model.ts
blob: d9027eb5bcc8b0be04e1ff7e0d17ce2de268ab34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { SearchTargetQuery } from './search-target-query.model'

export interface VideoPlaylistsSearchQuery extends SearchTargetQuery {
  search?: string

  start?: number
  count?: number
  sort?: string

  host?: string

  // UUIDs or short UUIDs
  uuids?: string[]
}

export interface VideoPlaylistsSearchQueryAfterSanitize extends VideoPlaylistsSearchQuery {
  start: number
  count: number
  sort: string
}