UNPKG

featurehub-javascript-client-sdk

Version:
15 lines (11 loc) 374 B
import { InternalFeatureRepository } from './internal_feature_repository'; export class InterceptorValueMatch { public value: string | undefined; constructor(value: string | undefined) { this.value = value; } } export interface FeatureStateValueInterceptor { matched(key: string): InterceptorValueMatch; repository(repo: InternalFeatureRepository): void; }