@metreeca/qest - v0.9.2
    Preparing search index...

    Variable TransformsConst

    Transforms: { readonly [name: string]: Transform } = ...

    Standard value transformations for computed expressions.

    Each transform specifies:

    • name — Transform identifier used in expressions
    • aggregate — Whether the transform operates on collections (true) or individual values (false)
    • datatype — Optional result type; the expected type should match the final value of the transform pipe:
      • "boolean", "number", "string" — Transform produces specific primitive type
      • (omitted) — Transform preserves input type

    Type Declaration

    The expression parser accepts any valid identifier as a transform name, not just those defined in this registry; this allows applications to extend the transform set without modifying the parser.

    "sum:items.price"      // sum of items.price values
    "round:avg:scores" // average of scores, rounded