File
means
|
means: GmmPlot
|
Type : GmmPlot
|
import {GmmPlot} from '@ghsc/nshmp-lib-ng/gmm';
import {ServiceCallInfo} from '@ghsc/nshmp-lib-ng/nshmp';
import {
GmmDistanceResponse,
GmmDistanceUsage,
} from '@ghsc/nshmp-utils-ts/libs/nshmp-ws/gmm-services';
import {EnumParameterValues} from '@ghsc/nshmp-utils-ts/libs/nshmp-ws-utils/metadata';
export interface Plots {
means: GmmPlot;
}
/**
* GMM distance app state
*/
export interface AppState {
plots: Plots;
/** Service call info */
serviceCallInfo: ServiceCallInfo;
/** GMM service response */
serviceResponses: GmmDistanceResponse[];
/** Supported IMTs */
supportedImts: EnumParameterValues[];
/** GMM usages */
usageResponse: GmmDistanceUsage;
}