Skip to content

Commit

Permalink
Added kind signatures in boot files
Browse files Browse the repository at this point in the history
  • Loading branch information
mmhat committed Jun 6, 2024
1 parent 2ac0404 commit c6d09e3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions dhall/src/Dhall/Syntax/Chunks.hs-boot
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
{-# LANGUAGE StandaloneKindSignatures #-}

module Dhall.Syntax.Chunks where

import Data.Kind (Type)

type Chunks :: Type -> Type -> Type
data Chunks s a
5 changes: 5 additions & 0 deletions dhall/src/Dhall/Syntax/Types.hs-boot
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{-# LANGUAGE StandaloneKindSignatures #-}

module Dhall.Syntax.Types where

import Data.Kind (Type)

data DhallDouble

data PreferAnnotation

type FieldSelection :: Type -> Type
data FieldSelection s

data WithComponent

0 comments on commit c6d09e3

Please sign in to comment.