UNPKG

@lighthouse-web3/sdk

Version:

NPM package and CLI tool to interact with lighthouse protocol

10 lines (9 loc) 284 B
export interface IUploadProgressCallback { progress: number; } export interface IFileUploadedResponse { Name: string; Hash: string; Size: string; } export type UploadFileReturnType<T extends boolean> = T extends true ? IFileUploadedResponse[] : IFileUploadedResponse;