/**
 * 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>;
}
