jsaddle-0.8.0.0: src-ghc/GHCJS/Buffer/Types.hs
{-# LANGUAGE DataKinds, KindSignatures, PolyKinds #-}
module GHCJS.Buffer.Types where
import GHCJS.Types
import GHCJS.Internal.Types
newtype SomeBuffer (a :: MutabilityType s) = SomeBuffer JSVal
type Buffer = SomeBuffer Immutable
type MutableBuffer = SomeBuffer Mutable