Current section
Files
Jump to
Current section
Files
lib/es_tree/export_specifier.ex
defmodule ESTree.ExportSpecifier do
@type t :: %ESTree.ExportSpecifier{
type: binary,
loc: ESTree.SourceLocation.t | nil,
local: ESTree.Identifier.t,
exported: ESTree.Identifier.t
}
defstruct type: "ExportSpecifier",
loc: nil,
local: %ESTree.Identifier{},
exported: %ESTree.Identifier{}
end