All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.raquo.waypoint.package.scala Maven / Gradle / Ivy

There is a newer version: 8.0.1
Show newest version
package com.raquo

import urldsl.errors._
import urldsl.vocabulary.{PathQueryFragmentMatching, UrlMatching}

/** This is the public API. Import com.raquo.waypoint or com.raquo.waypoint._ */
package object waypoint extends Waypoint(
  DummyError.dummyErrorIsPathMatchingError,
  DummyError.dummyErrorIsParamMatchingError,
  DummyError.dummyErrorIsFragmentMatchingError
) {

  // @TODO[URL-DSL] PatternArgs should be FragmentPatternArgs with FragmentArgs=Unit, not different types

  /** A bundle of path args and query param args */
  type PatternArgs[PathArgs, QueryArgs] = UrlMatching[PathArgs, QueryArgs]

  /** A bundle of path args, query param args, and fragment args */
  type FragmentPatternArgs[PathArgs, QueryArgs, FragmentArgs] = PathQueryFragmentMatching[PathArgs, QueryArgs, FragmentArgs]

  @inline def PatternArgs: UrlMatching.type = UrlMatching

  @inline def FragmentPatternArgs: PathQueryFragmentMatching.type = PathQueryFragmentMatching
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy