feat: add services package
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import { StorageKey } from './StorageKeys'
|
||||
|
||||
export interface KeyValueStoreInterface<T> {
|
||||
setValue(key: StorageKey, value: T): void
|
||||
getValue(key: StorageKey): T | undefined
|
||||
removeValue(key: StorageKey): void
|
||||
}
|
||||
Reference in New Issue
Block a user