DaffNoopStorageService
import { DaffNoopStorageService } from '@daffodil/core'
@Injectable()
class DaffNoopStorageService implements DaffPersistenceService {
setItem(
key: string
value: any
): void
getItem(key: string): any
clear(): void
removeItem(key: string): void
}
Properties
Name | Type | Description |
---|---|---|
setItem | void | |
getItem | any | |
clear | void | |
removeItem | void |