UNPKG

nakedobjects.spa

Version:

Single Page Application client for a Naked Objects application.

17 lines (16 loc) 780 B
import { ParameterViewModel } from '../view-models/parameter-view-model'; import { DialogViewModel } from '../view-models/dialog-view-model'; export declare class ViewParameterComponent { parent: DialogViewModel; parameter: ParameterViewModel; readonly title: string; readonly parameterPaneId: string; readonly parameterType: "scalar" | "ref"; readonly parameterReturnType: string; readonly formattedValue: string; readonly value: string | number | boolean | Date | null; readonly format: "string" | "time" | "blob" | "date-time" | "date" | "utc-millisec" | "big-integer" | "big-decimal" | "clob" | "decimal" | "int" | null; readonly isMultiline: boolean; readonly multilineHeight: string; readonly color: string; }