UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

14 lines 392 B
import { Content } from './Content'; import { Section } from './Section'; /** InstructionGuide */ export interface InstructionGuide { /** Guide introduction content */ content: Content[]; /** Guide language */ language: string; /** Sections of the guide */ sections: Section[]; /** Guide title */ title: string; } //# sourceMappingURL=InstructionGuide.d.ts.map