Packages

ConfigCat SDK for Elixir. Feature Flags created by developers for developers with ❤️. ConfigCat lets you manage feature flags across frontend, backend, mobile, and desktop apps without (re)deploying code. % rollouts, user targeting, segmentation. Feature toggle SDKs for all main languages.

Current section

Files

Jump to
configcat lib config_cat config.ex
Raw

lib/config_cat/config.ex

defmodule ConfigCat.Config do
@moduledoc """
Defines configuration-related types used in the rest of the library.
"""
@typedoc false
@type comparator :: non_neg_integer()
@typedoc "The name of a configuration setting."
@type key :: String.t()
@typedoc "A collection of configuration settings."
@type t :: map()
@typedoc "The actual value of a configuration setting."
@type value :: String.t() | boolean() | number()
@typedoc "The name of a variation being tested."
@type variation_id :: String.t()
end