API reference

Every public class, method, and event in @codexo/exojs. Generated from source.

I

interfaceAssetCacheErrorOptions

@codexo/exojs / assets / stable

Construction options for an AssetCacheError.

5
props
0
methods
0
events
Import
import { AssetCacheErrorOptions } from '@codexo/exojs'

Construction options for an AssetCacheError.

Properties5
cause?: unknown
The underlying failure - an IDBRequest.error DOMException, a store's own rejection, or anything a custom CacheStore threw. Passed through as Error.cause.
key?: string
Record key, when the operation targets a single record. Explicitly undefined is accepted - a store-wide operation has none.
message: string
One-line, actionable summary (becomes the Error.message prefix).
store?: string
Storage namespace, when the operation targets one. Explicitly undefined is accepted - a store-wide operation has none.
Source