ghcjs-base-stub-0.3.0.1: ghcjs-base/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