Response from IPFS get operation

interface IPFSGetResponse {
    base64: boolean;
    cid: string;
    content?: string;
    error?: string;
    size?: number;
    success: boolean;
}

Properties

base64: boolean
cid: string
content?: string
error?: string
size?: number
success: boolean