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.

14 lines (12 loc) 273 B
export class VisibilityValueConverter { toView(value: string): string { if (value) { return "collapsed"; } else { return "visible"; } } toModel(value: string): string { return value; } }