node-ovh-ts
Version:
OVH API wrapper library for TypeScript
13 lines (10 loc) • 344 B
TypeScript
import { CloudStackSection } from './CloudStackSection.js';
import { CloudStackContent } from './CloudStackContent.js';
import './CloudStackStep.js';
type CloudStackInstructionGuide = {
content?: CloudStackContent[];
language?: string;
sections?: CloudStackSection[];
title?: string;
};
export { CloudStackInstructionGuide };