import { Subject } from 'rxjs' import { BaseStore } from '../stores' import { State } from '../stores/store-accessories' import { KeyValue } from '../types' import { StateChangeInfo } from './state-change-info.interface' export class DevToolsAdapter { public static readonly stores: KeyValue> = {} public static readonly states: KeyValue> = {} public static readonly values: KeyValue = {} public static readonly stateChange$ = new Subject() }