-module(caffeine_lang@identifiers). -compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch, inline]). -define(FILEPATH, "src/caffeine_lang/identifiers.gleam"). -export_type([org_name/0, team_name/0, service_name/0, measurement_name/0, expectation_label/0]). -type org_name() :: {org_name, binary()}. -type team_name() :: {team_name, binary()}. -type service_name() :: {service_name, binary()}. -type measurement_name() :: {measurement_name, binary()}. -type expectation_label() :: {expectation_label, binary()}.