UNPKG

react-native-lightspeedsdk

Version:
25 lines (21 loc) 433 B
'use strict'; type ScheduleSettingMap = { dayOfWeek:number, fromTime:string, toTime:string }; /** * Represents an immutable Schedule */ class ScheduleSetting { dayOfWeek:number; fromTime:string; toTime:string; constructor(map: ScheduleSettingMap) { this.dayOfWeek = map.dayOfWeek; this.fromTime = map.fromTime; this.toTime = map.toTime; Object.freeze(this); } } module.exports = ScheduleSetting;