@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
16 lines • 513 B
TypeScript
import { StatusEnum } from './envVar/StatusEnum';
import { TypeEnum } from './envVar/TypeEnum';
/** Environment variables set into your webhosting account */
export interface EnvVar {
/** Name of the variable */
key: string;
/** The environnement variable status */
status: StatusEnum;
/** The task ID working on this variable */
taskId?: number;
/** Type of variable set */
type: TypeEnum;
/** Value of the variable */
value: string;
}
//# sourceMappingURL=EnvVar.d.ts.map