1
0
mirror of https://github.com/kremalicious/ipfs.git synced 2024-06-26 03:06:51 +02:00
ipfs/src/@types/ipfs.d.ts
2021-09-12 20:57:02 +02:00

11 lines
213 B
TypeScript

import { CID } from 'ipfs-http-client'
// mirroring AddResult, which is not exported from 'ipfs-http-client'
export interface FileIpfs {
cid: CID
size: number
path: string
mode?: number
mtime?: Mtime
}