File

src/app/apps/components/apps.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
type
type: ApplicationType
Type : ApplicationType
import { ApplicationType } from '../../shared/model';
import { ListParams } from '../../shared/components/shared.interface';

export interface BulkImportParams {
  force: boolean;
  properties: string[];
  uri: string;
}

export interface AppRegisterParams {
  name: string;
  type: ApplicationType;
  uri: string;
  metaDataUri?: string;
  force: boolean;
}

export interface AppListParams extends ListParams {
  q: string;
  type: ApplicationType;
  page: number;
  size: number;
  sort: string;
  order: string;
}

results matching ""

    No results matching ""