interface INull {
    default?: null;
    deprecated?: boolean;
    description?: string;
    example?: any;
    examples?: Record<string, any>;
    nullable?: boolean;
    title?: string;
    type: "null";
}

Hierarchy (View Summary)

Properties

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