mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-07 01:16:28 +02:00
15 lines
400 B
TypeScript
15 lines
400 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { SetUiConfigSchemaFrontendSettings } from './setUiConfigSchemaFrontendSettings';
|
|
|
|
/**
|
|
* Unleash configuration settings affect the admin UI.
|
|
*/
|
|
export interface SetUiConfigSchema {
|
|
/** Settings related to the front-end API. */
|
|
frontendSettings?: SetUiConfigSchemaFrontendSettings;
|
|
}
|