@tnwx/commons
Version:
TTNWX 微信系开发脚手架之公共模块
10 lines (9 loc) • 379 B
TypeScript
import { EventInMsg } from './EventInMsg';
export declare class InFollowEvent extends EventInMsg {
static EVENT_INFOLLOW_SUBSCRIBE: string;
static EVENT_INFOLLOW_UNSUBSCRIBE: string;
private eventKey;
constructor(toUserName: string, fromUserName: string, createTime: number, event: string);
get getEventKey(): string;
set setEventKey(eventKey: string);
}