From cc97c1c35a7d6fcee3f24ada7e056321340e024a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5vard=20Lindset?= Date: Mon, 2 Dec 2024 23:29:24 +0100 Subject: [PATCH] add missing type --- lib/image_plug.ex | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/image_plug.ex b/lib/image_plug.ex index e307bda..b5eb1a9 100644 --- a/lib/image_plug.ex +++ b/lib/image_plug.ex @@ -8,6 +8,7 @@ defmodule ImagePlug do @type imgp_pct() :: {:float, imgp_number()} @type imgp_scale() :: {:float, imgp_number(), imgp_number()} @type imgp_length() :: imgp_number() | imgp_pct() | imgp_scale() + @type imgp_ratio() :: {:ratio, imgp_number(), imgp_number()} import Plug.Conn