UNPKG

react-native-lightspeedsdk

Version:
20 lines (15 loc) 323 B
'use strict'; type SurveyStartMap = { surveyStartTrackId:number }; /** * Represents an immutable SurveyStart */ class SurveyStart { surveyStartTrackId:number; constructor(map: SurveyStartMap) { this.surveyStartTrackId = map.surveyStartTrackId; Object.freeze(this); } } module.exports = SurveyStart;