mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-04 11:17:02 +02:00
We're migrating to ESM, which will allow us to import the latest versions of our dependencies. Co-Authored-By: Christopher Kolstad <chriswk@getunleash.io>
17 lines
520 B
TypeScript
17 lines
520 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { FeatureSearchResponseSchema } from './featureSearchResponseSchema.js';
|
|
|
|
/**
|
|
* A list of features matching search and filter criteria.
|
|
*/
|
|
export interface SearchFeaturesSchema {
|
|
/** The full list of features in this project matching search and filter criteria. */
|
|
features: FeatureSearchResponseSchema[];
|
|
/** Total count of the features matching search and filter criteria */
|
|
total?: number;
|
|
}
|