@typia/website
    Preparing search index...

    Constant value type.

    interface IConstant {
        const: string | number | boolean;
        deprecated?: boolean;
        description?: string;
        example?: any;
        examples?: Record<string, any>;
        title?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    const: string | number | boolean

    The constant value.

    deprecated?: boolean

    Whether the type is deprecated or not.

    description?: string

    Detailed description of the schema.

    example?: any

    Example value.

    examples?: Record<string, any>

    List of example values as key-value pairs.

    title?: string

    Title of the schema.