UNPKG

tns-template-master-detail-kinvey-ts

Version:

Master-detail interface to display collection of items from Kinvey and inspect and edit selected item properties.

17 lines (13 loc) 458 B
import { Observable } from "tns-core-modules/data/observable"; import { Car } from "../shared/car-model"; /* *********************************************************** * This is the item details view model. *************************************************************/ export class CarDetailViewModel extends Observable { constructor(private _car: Car) { super(); } get car(): Car { return this._car; } }