UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.

9 lines 449 B
import type { IFeatureSearchParams, IQueryParam } from '../feature-toggle/types/feature-toggle-strategies-store-type.js'; import type { IFeatureSearchOverview } from '../../types/index.js'; export interface IFeatureSearchStore { searchFeatures(params: IFeatureSearchParams, queryParams: IQueryParam[]): Promise<{ features: IFeatureSearchOverview[]; total: number; }>; } //# sourceMappingURL=feature-search-store-type.d.ts.map