unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
10 lines • 562 B
TypeScript
import type { IFeatureSearchOverview } from '../../types/index.js';
import type { IFeatureSearchParams, IQueryParam } from '../feature-toggle/types/feature-toggle-strategies-store-type.js';
import type { IFeatureSearchStore } from './feature-search-store-type.js';
export default class FakeFeatureSearchStore implements IFeatureSearchStore {
searchFeatures(params: IFeatureSearchParams, queryParams: IQueryParam[]): Promise<{
features: IFeatureSearchOverview[];
total: number;
}>;
}
//# sourceMappingURL=fake-feature-search-store.d.ts.map