UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

12 lines 316 B
import { Content } from './Content'; import { Step } from './Step'; /** Section */ export interface Section { /** Content of the guide section */ content: Content[]; /** Steps to follow */ steps: Step[]; /** Title of the guide section */ title: string; } //# sourceMappingURL=Section.d.ts.map