or to reference the type Material.Component.Index.
Since this is in the signature of many library methods (render, etc.), I would like to refer to this type in order to make my method signatures cleaner.
For example, I would like to say
renderSubcomponent : Material.Component.Index -> Html a
renderSubcomponent = ...
but instead must use
renderSubcomponent : List Int -> Html a
renderSubcomponent = ...
Currently is is not possible to
or to reference the type
Material.Component.Index
.Since this is in the signature of many library methods (
render
, etc.), I would like to refer to this type in order to make my method signatures cleaner.For example, I would like to say
but instead must use
which is much less clear.