Interface StateWatchMap

Defines a map of state watch to change.

Hierarchy

  • StateWatchMap

Indexable

[key: string]: {
    filter?: ((action, currentState, snapshot) => boolean);
    limit?: number;
    path: string;
}
  • Optional filter?: ((action, currentState, snapshot) => boolean)
      • (action, currentState, snapshot): boolean
      • Parameters

        • action: any
        • currentState: any
        • snapshot: any

        Returns boolean

  • Optional limit?: number
  • path: string

Generated using TypeDoc