import { Token } from '../../../../../zoo-message-ts/src/api/general/types.ts'; import { Attachment } from '../getChatConversation/types'; export type GetZooFileProtocolInput = Token & { nodeAddress: string; file: string; }; export type GetZooFileProtocolOutput = Blob; export type GetZooFilesProtocolInput = Token & { nodeAddress: string; files: string[]; }; export type GetZooFilesProtocolOutput = Attachment[];