Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 270 Bytes

todo.md

File metadata and controls

16 lines (14 loc) · 270 Bytes
enum FileReturnType = {
  Stream,
  SomethingElse,
  ...
}

type GetFile = {
  bucketName: string,
  fileName: string,
  type: FileReturnType,
  options?: { start?: number; end?: number }
}

getFile(GetFile): Promise<ResultObjectStream | ResultObject>