interface BlobStoreFetchOptions {
    actionIfBlobMissing?: "emptyBlob";
}

Properties

actionIfBlobMissing?: "emptyBlob"

If the blob is not found when fetching, what should we do? Subclasses may define their own methods, but the following are supported by default:

  • Undefined or an empty string: return undefined
  • "emptyBlob": return a new MediaBlob that has the path set, but nothing else.