Minimal Slice Object Store | Example

Ole Ersoy
Mar - 11  -  1 min
import { KeyObsValueReset, ObsValueReset, OStore, OStoreStart } from '@fireflysemantics/slice'
const START:OStoreStart = {
   K1: { value: 'V1'  }
}
interface ISTART extends KeyObsValueReset {  
    K1: ObsValueReset
}
let OS:OStore<ISTART> = new OStore(START)