UNPKG

@0xpolygonid/js-sdk

Version:
15 lines (12 loc) 258 B
import { JsonDocumentObject } from '../packer'; export type Attachment = { id: string; description?: string; media_type?: string; format?: string; data: AttachData; }; export type AttachData = { json?: JsonDocumentObject; base64?: string; };