You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 = ...
which is much less clear.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: