mirror of
https://github.com/Unleash/unleash.git
synced 2025-03-27 00:19:39 +01:00
15 lines
343 B
TypeScript
15 lines
343 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { OutdatedSdksSchemaSdksItem } from './outdatedSdksSchemaSdksItem';
|
|
|
|
/**
|
|
* Data about outdated SDKs that should be upgraded.
|
|
*/
|
|
export interface OutdatedSdksSchema {
|
|
/** A list of SDKs */
|
|
sdks: OutdatedSdksSchemaSdksItem[];
|
|
}
|