@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
15 lines • 379 B
TypeScript
import { HelperSection } from './HelperSection';
/** Helper */
export interface Helper {
/** Helper description */
description: string;
/** Input engine UUID */
engineId: string;
/** Helper UUID */
helperId: string;
/** Helper sections */
sections: HelperSection[];
/** Helper title */
title: string;
}
//# sourceMappingURL=Helper.d.ts.map