react-native-lightspeedsdk
Version:
A react-native interface for using the LightspeedSDK
20 lines (15 loc) • 323 B
JavaScript
;
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;