interface BlobStoreFetchOptions {
    handleMissingBlobMethod?: string;
}

Properties

handleMissingBlobMethod?: string

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.

Generated using TypeDoc