Create re-state get
This method update data on store
//mutedState.tsimport { createReState, createGetReState } from '@raulpesilva/re-state'
export type Muted = booleanexport const key = 'muted'
export const useMuted = createReState<Muted>(key, true)export const getMuted = createGetReState<Muted>(key)
type MyType = booleanconst getMyState: () => MyType = createGetReState<MyType>(unicKey: String | Symbol)