interface ServerObject {
    description?: string;
    url: string;
    variables?: Record<string, ServerVariableObject>;
    [x: string]: unknown;
}

Indexable

[x: string]: unknown

Properties

description?: string
url: string
variables?: Record<string, ServerVariableObject>