mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-19 00:15:43 +01: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;
|
|
}
|