{-# LANGUAGE PatternSynonyms, ForeignFunctionInterface, JavaScriptFFI #-} module GHCJS.DOM.JSFFI.Generated.MimeType (js_getType, getType, js_getSuffixes, getSuffixes, js_getDescription, getDescription, js_getEnabledPlugin, getEnabledPlugin, MimeType, castToMimeType, gTypeMimeType) where import Prelude ((.), (==), (>>=), return, IO, Int, Float, Double, Bool(..), Maybe, maybe, fromIntegral, round, fmap, Show, Read, Eq, Ord) import Data.Typeable (Typeable) import GHCJS.Types (JSRef(..), JSString) import GHCJS.Foreign (jsNull) import GHCJS.Foreign.Callback (syncCallback, asyncCallback, syncCallback1, asyncCallback1, syncCallback2, asyncCallback2, OnBlocked(..)) import GHCJS.Marshal (ToJSRef(..), FromJSRef(..)) import GHCJS.Marshal.Pure (PToJSRef(..), PFromJSRef(..)) import Control.Monad.IO.Class (MonadIO(..)) import Data.Int (Int64) import Data.Word (Word, Word64) import GHCJS.DOM.Types import Control.Applicative ((<$>)) import GHCJS.DOM.EventTargetClosures (EventName, unsafeEventName) import GHCJS.DOM.Enums foreign import javascript unsafe "$1[\"type\"]" js_getType :: MimeType -> IO JSString -- | getType :: (MonadIO m, FromJSString result) => MimeType -> m result getType self = liftIO (fromJSString <$> (js_getType (self))) foreign import javascript unsafe "$1[\"suffixes\"]" js_getSuffixes :: MimeType -> IO JSString -- | getSuffixes :: (MonadIO m, FromJSString result) => MimeType -> m result getSuffixes self = liftIO (fromJSString <$> (js_getSuffixes (self))) foreign import javascript unsafe "$1[\"description\"]" js_getDescription :: MimeType -> IO JSString -- | getDescription :: (MonadIO m, FromJSString result) => MimeType -> m result getDescription self = liftIO (fromJSString <$> (js_getDescription (self))) foreign import javascript unsafe "$1[\"enabledPlugin\"]" js_getEnabledPlugin :: MimeType -> IO (Nullable Plugin) -- | getEnabledPlugin :: (MonadIO m) => MimeType -> m (Maybe Plugin) getEnabledPlugin self = liftIO (nullableToMaybe <$> (js_getEnabledPlugin (self)))