import { Type } from "./../../typeSystem/type"; export interface IStoreValue { type: Type; get () : any; id? : String; isConst: boolean; inStore: () => boolean; }