GitHub

DaffServerErrorStorageService

A storage service meant to be loaded into SSR contexts. It will always throw the DaffServerSideStorageError.

@Injectable()
class DaffServerErrorStorageService implements DaffPersistenceService {
  setItem(
    key: string
    value: any
  ): void
  getItem(key: string): any
  removeItem(key: string): any
  clear()
}

Properties

Name Type Description
setItem void
getItem any
removeItem any
clear