UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

15 lines (12 loc) 521 B
import { HostingWebHostedsslTypeEnum } from './HostingWebHostedsslTypeEnum.js'; import { HostingWebHostedsslStatusEnum } from './HostingWebHostedsslStatusEnum.js'; import { HostingWebHostedsslProviderEnum } from './HostingWebHostedsslProviderEnum.js'; type HostingWebSSL = { isReportable?: boolean; provider?: HostingWebHostedsslProviderEnum; regenerable?: boolean; status?: HostingWebHostedsslStatusEnum; taskId?: number | null; type?: HostingWebHostedsslTypeEnum; }; export { HostingWebSSL };