forked from AkkomaGang/akkoma
Merge branch 'fix/elixir-1-8-type-annotation' into 'develop'
Fix Elixir 1.8 type annotation issue Closes #523 See merge request pleroma/pleroma!668
This commit is contained in:
commit
646bb87816
1 changed files with 3 additions and 2 deletions
|
@ -34,8 +34,9 @@ defmodule Pleroma.Upload do
|
||||||
require Logger
|
require Logger
|
||||||
|
|
||||||
@type source ::
|
@type source ::
|
||||||
Plug.Upload.t() | data_uri_string ::
|
Plug.Upload.t()
|
||||||
String.t() | {:from_local, name :: String.t(), id :: String.t(), path :: String.t()}
|
| (data_uri_string :: String.t())
|
||||||
|
| {:from_local, name :: String.t(), id :: String.t(), path :: String.t()}
|
||||||
|
|
||||||
@type option ::
|
@type option ::
|
||||||
{:type, :avatar | :banner | :background}
|
{:type, :avatar | :banner | :background}
|
||||||
|
|
Loading…
Reference in a new issue