@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 339 B
TypeScript
/** Config test results */
export interface TestResult {
/** Whether the given configuration pass the syntax test */
isValid: boolean;
/** Standard error */
stderr?: string;
/** Standard output */
stdout?: string;
/** Last config test update */
updatedAt?: string;
}
//# sourceMappingURL=TestResult.d.ts.map