UNPKG

@tnwx/commons

Version:

TTNWX 微信系开发脚手架之公共模块

29 lines 840 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const EventInMsg_1 = require("./EventInMsg"); class InLocationEvent extends EventInMsg_1.EventInMsg { constructor(toUserName, fromUserName, createTime, event) { super(toUserName, fromUserName, createTime, event); } get getLatitude() { return this.latitude; } set setLatitude(latitude) { this.latitude = latitude; } get getLongitude() { return this.longitude; } set setLongitude(longitude) { this.longitude = longitude; } get getPrecision() { return this.precision; } set setPrecision(precision) { this.precision = precision; } } exports.InLocationEvent = InLocationEvent; InLocationEvent.EVENT = 'LOCATION'; //# sourceMappingURL=InLocationEvent.js.map