Current section
Files
Jump to
Current section
Files
lib/es_tree/export_named_declaration.ex
defmodule ESTree.ExportNamedDeclaration do
@type t :: %ESTree.ExportNamedDeclaration{
type: binary,
loc: ESTree.SourceLocation.t | nil,
declaration: ESTree.Declaration.t | nil,
specifiers: [ESTree.ExportSpecifier],
source: ESTree.Literal.t | nil
}
defstruct type: "ExportNamedDeclaration",
loc: nil,
declaration: nil,
specifiers: [],
source: nil
end