wechaty-puppet
Version:
Abstract Puppet for Wechaty
20 lines • 518 B
TypeScript
/**
* Huan(202201): This enum type value MUST be keep unchanged across versions
* because the puppet service client/server might has different versions of the puppet
*/
declare enum TapType {
Unspecified = 0,
Like = 1
}
declare type TapPayload = {
[key in TapType]?: {
contactId: string[];
timestamp: number[];
};
};
interface TapQueryFilter {
contactId?: string;
type?: TapType;
}
export { TapType, type TapPayload, type TapQueryFilter, };
//# sourceMappingURL=tap.d.ts.map