Expose Route.toString.

This commit is contained in:
Dillon Kearns 2022-04-06 16:38:41 -07:00
parent 52c8a73485
commit c877aab519

View File

@ -888,11 +888,11 @@ decodeBytes bytesDecoder items =
-- Lamdera.Wire3.bytesDecodeStrict bytesDecoder items
|> Result.fromMaybe "Decoding error"
`,
routesModule: `module Route exposing (baseUrlAsPath, Route(..), link, matchers, routeToPath, toLink, urlToRoute, toPath, redirectTo)
routesModule: `module Route exposing (baseUrlAsPath, Route(..), link, matchers, routeToPath, toLink, urlToRoute, toPath, redirectTo, toString)
{-|
@docs Route, link, matchers, routeToPath, toLink, urlToRoute, toPath, redirectTo
@docs Route, link, matchers, routeToPath, toLink, urlToRoute, toPath, redirectTo, toString
-}