interface __ISignificant<Type extends string> {
    deprecated?: boolean;
    description?: string;
    example?: any;
    examples?: any[];
    title?: string;
    type: Type;
    "x-nullable"?: boolean;
}

Type Parameters

  • Type extends string

Hierarchy (View Summary)

Properties

deprecated?: boolean
description?: string
example?: any
examples?: any[]
title?: string
type: Type
"x-nullable"?: boolean