UNPKG

featurehub-javascript-client-sdk

Version:
10 lines (9 loc) 351 B
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; }