Fix typing for config modules
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
defmodule LastFm.Config do
|
defmodule LastFm.Config do
|
||||||
@type t :: %{
|
@type t :: %__MODULE__{
|
||||||
api: module(),
|
api: module(),
|
||||||
api_key: String.t(),
|
api_key: String.t(),
|
||||||
user: String.t(),
|
user: String.t(),
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
defmodule MusicBrainz.Config do
|
defmodule MusicBrainz.Config do
|
||||||
@type t :: %{
|
@type t :: %__MODULE__{
|
||||||
api: module(),
|
api: module(),
|
||||||
user_agent: String.t()
|
user_agent: String.t()
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user