import { Type } from "./../../typeSystem/type"; export interface IStoreValue { type: Type; get () : any; id : String | null; isConst: boolean; }