@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
11 lines • 335 B
TypeScript
import { TypeEnum } from './envVar/TypeEnum';
/** Environment variables set into your webhosting account */
export interface EnvVarInput {
/** Name of the variable */
key: string;
/** Type of variable set */
type: TypeEnum;
/** Value of the variable */
value: string;
}
//# sourceMappingURL=EnvVarInput.d.ts.map