mirror of
https://github.com/Unleash/unleash.git
synced 2025-05-22 01:16:07 +02:00
15 lines
401 B
TypeScript
15 lines
401 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
export type ExportQuerySchemaAnyOf = {
|
|
/** Whether to return a downloadable file */
|
|
downloadFile?: boolean;
|
|
/** The environment to export from */
|
|
environment: string;
|
|
/** Selects features to export by name. If the list is empty all features are returned. */
|
|
features: string[];
|
|
};
|