fix(emqx_map_lib): Fix underspec

This commit is contained in:
k32 2022-01-12 16:20:13 +01:00
parent d25258943b
commit 784ca5bf24
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@
]). ]).
-export_type([config_key/0, config_key_path/0]). -export_type([config_key/0, config_key_path/0]).
-type config_key() :: atom() | binary() | string(). -type config_key() :: atom() | binary() | [byte()].
-type config_key_path() :: [config_key()]. -type config_key_path() :: [config_key()].
-type convert_fun() :: fun((...) -> {K1::any(), V1::any()} | drop). -type convert_fun() :: fun((...) -> {K1::any(), V1::any()} | drop).