src/app/apps/components/apps.interface.ts
Properties |
force |
force:
|
Type : boolean
|
Defined in src/app/apps/components/apps.interface.ts:5
|
properties |
properties:
|
Type : string[]
|
Defined in src/app/apps/components/apps.interface.ts:6
|
uri |
uri:
|
Type : string
|
Defined in src/app/apps/components/apps.interface.ts:7
|
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;
}