{-# OPTIONS --safe #-}

open import Prelude
  hiding (; Poly-⊤; Poly-tt; ; Poly-⊥)

module Truth.Definition ( : Level) where

open import Data.Unit.UniversePolymorphic {}
open import Data.Empty.UniversePolymorphic {}

infix 3 _∥_
record Ω : Type (ℓsuc ) where
  constructor _∥_; no-eta-equality
  field  ProofOf  : Type 
         IsProp   : isProp ProofOf
open Ω public