mirror of
https://github.com/kremalicious/ipfs.git
synced 2025-02-14 21:10:43 +01:00
9 lines
127 B
TypeScript
9 lines
127 B
TypeScript
import { CID } from 'ipfs-http-client'
|
|
|
|
export interface FileIpfs {
|
|
path: string
|
|
cid: CID
|
|
size: number
|
|
mode?: number
|
|
}
|