export interface BlobLike { /** * Returns a ReadableStream which yields the Blob data. */ stream: () => ReadableStream } export interface FileLike extends BlobLike { /** * Name of the file. May include path information. */ name: string }