1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-03-27 00:19:39 +01:00
unleash.unleash/frontend/src/openapi/models/outdatedSdksSchema.ts
2024-03-14 10:15:33 +01:00

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[];
}