You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
218 B

  1. package outwatch
  2. import outwatch._
  3. import colibri.ProSubject
  4. package object router {
  5. type RouterStore[P] = ProSubject[Action, (Action, RouterState[P])]
  6. type RouterResolve[P] = PartialFunction[P, VDomModifier]
  7. }