@valon-technologies/gestalt
    Preparing search index...

    Interface CatalogParameter

    CatalogParameter describes one input parameter surfaced in the generated catalog for an operation.

    interface CatalogParameter {
        name: string;
        type: string;
        description: string;
        required: boolean;
        default?: JsonValue;
    }
    Index

    Properties

    name: string
    type: string
    description: string
    required: boolean
    default?: JsonValue