ghcjs-base-0.2.0.0: 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