Skip to content

Commit

Permalink
Fix type key definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementineOldfield committed Jul 23, 2020
1 parent 553647f commit ea6b3c2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lib/cloudex/uploaded_image.ex
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ defmodule Cloudex.UploadedImage do
}

@type eager_transformations :: list(%{
"bytes" => non_neg_integer,
"format" => String.t(),
"height" => non_neg_integer,
"secure_url" => String.t(),
"transformation" => String.t(),
"url" => String.t(),
"width" => non_neg_integer
:bytes => non_neg_integer,
:format => String.t(),
:height => non_neg_integer,
:secure_url => String.t(),
:transformation => String.t(),
:url => String.t(),
:width => non_neg_integer
})

defstruct bytes: nil,
Expand Down

0 comments on commit ea6b3c2

Please sign in to comment.