UNPKG

nakedobjects.spa

Version:

Single Page Application client for a Naked Objects application.

14 lines (13 loc) 527 B
import * as Models from '../models'; export declare class ChoiceViewModel { private readonly wrapped; private readonly id; constructor(wrapped: Models.Value, id: string, name?: string | null, searchTerm?: string); readonly name: string; private readonly search; private readonly isEnum; readonly getValue: () => Models.Value; readonly equals: (other: ChoiceViewModel) => boolean; readonly valuesEqual: (other: ChoiceViewModel) => boolean; readonly toString: () => string; }