@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
31 lines (30 loc) • 923 B
TypeScript
/**
* devopness API
* Devopness API - Painless essential DevOps to everyone
*
* The version of the OpenAPI document: latest
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* List of available commands to be chosen by user to be executed when building and deploying an application of a given stack
* @export
* @interface LanguageRuntimeFrameworkCommands
*/
export interface LanguageRuntimeFrameworkCommands {
/**
* Available build command options for the stack
* @type {Array<string>}
* @memberof LanguageRuntimeFrameworkCommands
*/
build?: Array<string>;
/**
* Available dependencies installation command options for the stack
* @type {Array<string>}
* @memberof LanguageRuntimeFrameworkCommands
*/
dependencies?: Array<string>;
}