UNPKG

@airgap/coinlib-core

Version:

The @airgap/coinlib-core is a protocol agnostic library to prepare, sign and broadcast cryptocurrency transactions.

9 lines (8 loc) 324 B
import { RawData, RemoteData } from './RemoteData'; export declare class IpfsRemoteData<T> extends RemoteData<T> { static from<T>(uri: string): IpfsRemoteData<T> | undefined; static validate(uri: string): boolean; get(): Promise<T | undefined>; getRaw(): Promise<RawData | undefined>; private getData; }