From 812436c1e3adec966ea6486df21b331f3b6e406b Mon Sep 17 00:00:00 2001 From: Viktar Basharymau Date: Wed, 26 Sep 2018 12:13:39 +0300 Subject: [PATCH] Add missing typespec for RawValue `Absinthe.Blueprint.Input.RawValue.t()` is already used in one place, but not defined. Let's fix this. --- lib/absinthe/blueprint/input/raw_value.ex | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/absinthe/blueprint/input/raw_value.ex b/lib/absinthe/blueprint/input/raw_value.ex index 625163ff5c..1035038edb 100644 --- a/lib/absinthe/blueprint/input/raw_value.ex +++ b/lib/absinthe/blueprint/input/raw_value.ex @@ -5,4 +5,8 @@ defmodule Absinthe.Blueprint.Input.RawValue do defstruct [ :content ] + + @type t :: %__MODULE__{ + content: any() + } end