featurehub-javascript-client-sdk
Version:
FeatureHub client/browser SDK
10 lines (9 loc) • 351 B
TypeScript
import { InternalFeatureRepository } from './internal_feature_repository';
export declare class InterceptorValueMatch {
value: string | undefined;
constructor(value: string | undefined);
}
export interface FeatureStateValueInterceptor {
matched(key: string): InterceptorValueMatch;
repository(repo: InternalFeatureRepository): void;
}