Type alias LoadingEventCallback

LoadingEventCallback: {
    onLoadingComplete?: ((event) => void);
    onLoadingError?: ((event) => void);
    onLoadingProgress?: ((event) => void);
    onLoadingStart?: ((event) => void);
}

Loading event callbacks for cache operations.

Type declaration

  • Optional onLoadingComplete?: ((event) => void)
  • Optional onLoadingError?: ((event) => void)
  • Optional onLoadingProgress?: ((event) => void)
  • Optional onLoadingStart?: ((event) => void)