Current section
Files
Jump to
Current section
Files
lib/es_tree/jsx_closing_element.ex
defmodule ESTree.JSXClosingElement do
@type t :: %ESTree.JSXClosingElement{
type: binary,
loc: ESTree.SourceLocation.t | nil,
name: ESTree.JSXIdentifier.t | ESTree.JSXMemberExpression.t | ESTree.JSXNamespacedName.t
}
defstruct type: "JSXClosingElement", loc: nil, name: nil
end