import { DaffServerErrorStorageService } from '@daffodil/core'
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(): void
}
void
Parameter | key: string |
---|---|
Description |
Parameter | value: any |
---|---|
Description |
any
Parameter | key: string |
---|---|
Description |
any
Parameter | key: string |
---|---|
Description |
void