Skip to content

Expose declarations in import statements #50

@adauguet

Description

@adauguet

Is it possible to expose some declarations in import statements?

Before:

import Html
import Html.Attributes

Html.div
    [ Html.Attributes.class "hello" ]
    [ Html.text "Hello world!" ]

After:

import Html exposing (div, text)
import Html.Attributes exposing (class)

div
    [ class "hello" ]
    [ text "Hello world!" ]

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions