Current section
Files
Jump to
Current section
Files
lib/yarn_lock.ex
defmodule YarnParser.YarnLock do
@type t :: %YarnParser.YarnLock{
metadata: map(),
dependencies: map()
}
defstruct metadata: %{}, dependencies: %{}
end