File

src/app/tasks/components/tasks.interface.ts

Extends

ListParams

Index

Properties

Properties

order
order: string
Type : string
page
page: number
Type : number
q
q: string
Type : string
size
size: number
Type : number
sort
sort: string
Type : string
import { ListParams } from '../../shared/components/shared.interface';

export interface TaskListParams extends ListParams {
  q: string;
  page: number;
  size: number;
  sort: string;
  order: string;
}

export interface TaskLaunchParams {
  name: string;
  args?: string;
  props?: string;
}

export interface TaskCreateParams {
  definition: string;
  name: string;
}

export interface TaskScheduleCreateParams {
  schedulerName: string;
  task: string;
  args?: string;
  props?: string;
  cronExpression: string;
}

results matching ""

    No results matching ""