ipfs/src/@types/ipfs.d.ts

9 lines
127 B
TypeScript
Raw Normal View History

2021-09-12 16:41:30 +02:00
import { CID } from 'ipfs-http-client'
export interface FileIpfs {
path: string
cid: CID
size: number
mode?: number
}