interface __ISignificant<Type extends string> {
    deprecated?: boolean;
    description?: string;
    example?: any;
    examples?: Record<string, any>;
    nullable?: boolean;
    title?: string;
    type: Type;
}

Type Parameters

  • Type extends string

Hierarchy (View Summary)

Properties

deprecated?: boolean
description?: string
example?: any
examples?: Record<string, any>
nullable?: boolean
title?: string
type: Type