src/app/apps/components/apps.interface.ts
Properties |
order |
order:
|
Type : string
|
Defined in src/app/apps/components/apps.interface.ts:24
|
page |
page:
|
Type : number
|
Defined in src/app/apps/components/apps.interface.ts:21
|
q |
q:
|
Type : string
|
Defined in src/app/apps/components/apps.interface.ts:19
|
size |
size:
|
Type : number
|
Defined in src/app/apps/components/apps.interface.ts:22
|
sort |
sort:
|
Type : string
|
Defined in src/app/apps/components/apps.interface.ts:23
|
type |
type:
|
Type : ApplicationType
|
Defined in src/app/apps/components/apps.interface.ts:20
|
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;
}