@tnwx/commons
Version:
TTNWX 微信系开发脚手架之公共模块
26 lines (25 loc) • 1.04 kB
TypeScript
import { EventInMsg } from './EventInMsg';
import { ScanCodeInfo } from './ScanCodeInfo';
export declare class InMenuEvent extends EventInMsg {
static EVENT_INMENU_CLICK: string;
static EVENT_INMENU_VIEW: string;
static EVENT_INMENU_SCANCODE_PUSH: string;
static EVENT_INMENU_scancode_waitmsg: string;
static EVENT_INMENU_PIC_SYSPHOTO: string;
static EVENT_INMENU_PIC_PHOTO_OR_ALBUM: string;
static EVENT_INMENU_PIC_WEIXIN: string;
static EVENT_INMENU_LOCATION_SELECT: string;
static EVENT_INMENU_MEDIA_ID: string;
static EVENT_INMENU_VIEW_LIMITED: string;
static EVENT_INMENU_VIEW_MINIPROGRAM: string;
private eventKey;
private scanCodeInfo;
private menuId;
constructor(toUserName: string, fromUserName: string, createTime: number, event: string);
get getEventKey(): string;
set setEventKey(eventKey: string);
get getScanCodeInfo(): ScanCodeInfo;
set setScanCodeInfo(scanCodeInfo: ScanCodeInfo);
get getMenuId(): string;
set setMenuId(menuId: string);
}