istore_value.ts 153 B

12345678
  1. import { Type } from "./../../typeSystem/type";
  2. export interface IStoreValue {
  3. type: Type;
  4. get () : any;
  5. id : String | null;
  6. isConst: boolean;
  7. }