Type alias PartialDownloadableEntry

PartialDownloadableEntry: {
    blob: Blob;
    type: BLOB;
} | {
    type: URL;
    url: string;
} | {
    mime: string;
    text: string;
    type: TEXT;
}

Type declaration

  • blob: Blob
  • type: BLOB

Type declaration

  • type: URL
  • url: string

Type declaration

  • mime: string
  • text: string
  • type: TEXT

Generated using TypeDoc