27 lines
587 B
Haskell
27 lines
587 B
Haskell
{-# LANGUAGE DataKinds #-}
|
|
|
|
module Language.Haskell.Brittany
|
|
( parsePrintModule
|
|
, staticDefaultConfig
|
|
, forwardOptionsSyntaxExtsEnabled
|
|
, Config
|
|
, CConfig(..)
|
|
, CDebugConfig(..)
|
|
, CLayoutConfig(..)
|
|
, CErrorHandlingConfig(..)
|
|
, CForwardOptions(..)
|
|
, CPreProcessorConfig(..)
|
|
, BrittanyError(..)
|
|
)
|
|
where
|
|
|
|
|
|
|
|
#include "prelude.inc"
|
|
|
|
import Language.Haskell.Brittany.Internal
|
|
import Language.Haskell.Brittany.Internal.Types
|
|
import Language.Haskell.Brittany.Internal.Config.Types
|
|
import Language.Haskell.Brittany.Internal.Config
|
|
|