istore_value.ts 173 B

123456789
  1. import { Type } from "./../../typeSystem/type";
  2. export interface IStoreValue {
  3. type: Type;
  4. get () : any;
  5. id? : String;
  6. isConst: boolean;
  7. inStore: () => boolean;
  8. }