@squawk
    Preparing search index...

    Interface ProcedureSearchQuery

    Options for a text search query against procedure names and identifiers.

    interface ProcedureSearchQuery {
        approachType?: ApproachType;
        limit?: number;
        text: string;
        type?: ProcedureType;
    }
    Index

    Properties

    approachType?: ApproachType

    Optional approach type filter (applied only when matching IAPs).

    limit?: number

    Maximum number of results to return. Defaults to 20.

    text: string

    Case-insensitive substring matched against name and identifier.

    Optional procedure type to filter by.