Conformal TypeScript API
    Preparing search index...

    Type Alias Info

    Info: {
        title: string;
        type_specific:
            | {
                default: number;
                t: "numeric";
                units: string;
                valid_range: readonly [number, number];
            }
            | { default: string; t: "enum"; values: readonly string[] }
            | { default: boolean; t: "switch" };
    }

    Information about a parameter.

    Type Declaration

    • title: string

      The title of the parameter

    • type_specific:
          | {
              default: number;
              t: "numeric";
              units: string;
              valid_range: readonly [number, number];
          }
          | { default: string; t: "enum"; values: readonly string[] }
          | { default: boolean; t: "switch" }

      Information that depends on the type of the parameter