Interface TextMapGetter<Carrier>
interface TextMapGetter<Carrier = any> { get(carrier: Carrier, key: string): undefined | string | string[]; keys(carrier: Carrier): string[];} Methods
get
get(carrier: Carrier, key: string): undefined | string | string[] Returns undefined | string | string[]
A getter is specified by the caller to define a specific method to get the value of a key from a carrier.
Since
1.0.0