UNPKG

@tnwx/commons

Version:

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

25 lines (24 loc) 720 B
/** * @author Javen * @copyright javendev@126.com * @description 接收地理位置消息 */ import { InMsg } from './InMsg'; export declare class InLocationMsg extends InMsg { private location_X; private location_Y; private scale; private label; private msgId; constructor(toUserName: string, fromUserName: string, createTime: number, msgType: string); get getLocation_X(): string; set setLocation_X(location_X: string); get getLocation_Y(): string; set setLocation_Y(location_Y: string); get getScale(): string; set setScale(scale: string); get getLabel(): string; set setLabel(label: string); get getMsgId(): string; set setMsgId(msgId: string); }