blob: 1c1a05a10ad2234c6323401be01028e3836b9788 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{-# OPTIONS --without-K --safe #-}
open import Relation.Binary using (Setoid)
module Cfe.Type
{c ℓ} (over : Setoid c ℓ)
where
open import Cfe.Type.Base over public
open import Cfe.Type.Properties over public
|