aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/runners/list-runner-jobs-query.model.ts
blob: ef19b31faae1cf27c75a922110c153c45b7c44c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { RunnerJobState } from './runner-job-state.model'

export interface ListRunnerJobsQuery {
  start?: number
  count?: number
  sort?: string
  search?: string
  stateOneOf?: RunnerJobState[]
}