From cdb30ccf604f9dbdae0c62e4bb4faabfe34e7b00 Mon Sep 17 00:00:00 2001 From: James Carlson Date: Tue, 28 May 2024 05:59:10 +0200 Subject: [PATCH] In Install/ClauseInCase, expose Config, CustomError --- src/Install/ClauseInCase.elm | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/Install/ClauseInCase.elm b/src/Install/ClauseInCase.elm index 26ac395..c6fb6c6 100644 --- a/src/Install/ClauseInCase.elm +++ b/src/Install/ClauseInCase.elm @@ -1,7 +1,4 @@ -module Install.ClauseInCase exposing - ( init, makeRule, withInsertAfter, withCustomErrorMessage - , Config, CustomError - ) +module Install.ClauseInCase exposing (init, makeRule, withInsertAfter, withCustomErrorMessage, Config, CustomError) {-| Add a clause to a case expression in a specified function in a specified module. For example, if you put the code below in your @@ -45,7 +42,7 @@ in a specified module. For example, if you put the code below in your |> Install.ClauseInCase.withCustomErrorMessage "Add handler for ResetCounter" [] |> Install.ClauseInCase.makeRule -@docs init, makeRule, withInsertAfter, withCustomErrorMessage +@docs init, makeRule, withInsertAfter, withCustomErrorMessage, Config, CustomError -}