@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
21 lines • 769 B
TypeScript
import { EnvEnum } from './configuration/EnvEnum';
import { LanguageEnum } from './configuration/LanguageEnum';
import { StateEnum } from './configuration/StateEnum';
/** The Configuration of an hosting Power offer */
export interface Configuration {
/** Application environment */
appEnv: EnvEnum;
/** Application launch script */
entryPoint?: string;
/** Id of the current configuration */
id: number;
/** language chosen for the current hosting */
language: LanguageEnum;
/** Directory of the application */
publicDir?: string;
/** Status of current configuration */
status: StateEnum;
/** version of the language chosen for the current hosting */
version: string;
}
//# sourceMappingURL=Configuration.d.ts.map