featurehub-repository
Version:
Core package of API that exposes FeatureHub feature flags, values and configuration to client applications written in Typescript or Javascript.
8 lines (7 loc) • 306 B
TypeScript
import { FeatureHubRepository } from './client_feature_repository';
export interface BaggageHeader {
repo?: FeatureHubRepository;
values?: Map<string, string | undefined>;
header?: string;
}
export declare function w3cBaggageHeader({ repo, values, header }: BaggageHeader): string | undefined;