/** * Represents a downloadable file. */ export type DownloadableFile = { /** Remote URI of the file resource. */ uri: string; /** Suggested filename when saving the file locally. */ filename: string; };