This is an automated email from the ASF dual-hosted git repository. nickva pushed a commit to tag 2.0.0 in repository https://gitbox.apache.org/repos/asf/couchdb-jiffy.git
commit bd7df5f12fc87373e1400ec461d8408086f45f75 Author: Feng Lee <[email protected]> AuthorDate: Sun Jan 19 10:24:46 2020 +0800 Export 'encode_options/0' and 'decode_options/0' types --- src/jiffy.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jiffy.erl b/src/jiffy.erl index 8f9f4ac..81275ab 100644 --- a/src/jiffy.erl +++ b/src/jiffy.erl @@ -46,9 +46,9 @@ -type decode_options() :: [decode_option()]. -type encode_options() :: [encode_option()]. +-export_type([decode_options/0, encode_options/0]). -export_type([json_value/0, jiffy_decode_result/0]). - -spec decode(iolist() | binary()) -> jiffy_decode_result(). decode(Data) -> decode(Data, []).
