1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/frontend/src/openapi/models/projectApplicationSdkSchema.ts

16 lines
366 B
TypeScript
Raw Normal View History

2024-02-13 14:22:08 +01:00
/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* A project application instance SDK.
*/
export interface ProjectApplicationSdkSchema {
/** Name of the SDK package that the application is using. */
name: string;
/** The versions of the SDK that the application is using. */
versions: string[];
}