/** * Interface represents Ipfs content */ export interface IpfsContent { path: string; hash: string; size: number; content?: any; }