mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-01 00:08:27 +01:00
16 lines
366 B
TypeScript
16 lines
366 B
TypeScript
|
/**
|
||
|
* 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[];
|
||
|
}
|