interface IReference<Key = string> {
    $ref: Key;
    deprecated?: boolean;
    description?: string;
    example?: any;
    examples?: Record<string, any>;
    title?: string;
}

Type Parameters

  • Key = string

Hierarchy (View Summary)

Properties

$ref: Key
deprecated?: boolean
description?: string
example?: any
examples?: Record<string, any>
title?: string