interface InfoObject {
    contact?: ContactObject;
    description?: string;
    license?: LicenseObject;
    termsOfService?: string;
    title: string;
    version: string;
    [key: string]: unknown;
}

Indexable

[key: string]: unknown

Properties

contact?: ContactObject
description?: string
license?: LicenseObject
termsOfService?: string
title: string
version: string