UNPKG

wechaty-puppet-service

Version:
17 lines (14 loc) 443 B
import type { puppet } from 'wechaty-grpc' /** * Any Protocol Buffer message that include a FileBoxChunk */ export interface FileBoxPb { hasFileBoxChunk(): boolean getFileBoxChunk(): puppet.FileBoxChunk | undefined setFileBoxChunk(value?: puppet.FileBoxChunk): void } export interface ConversationIdFileBoxPb extends FileBoxPb { hasConversationId(): boolean getConversationId(): string setConversationId(value: string): void }