Saxonberg Server API
    Preparing search index...

    Interface AugmentOpts

    Per-call options threaded through Mml.augment to the individual augmenters. The senses build introduces filter: the sense-channel allowlist for the senseStripAugmenter (the verb decides; look passes ['vision'], sense passes the viewer's full sensorium, the four single-sense verbs pass their own channel). Default-absent filter means "no per-call constraint — the augmenter uses the viewer's full sensorium" (the gestalt fallback).

    Optional and forward-compatible: existing augmenters that don't read opts keep working unchanged. New per-call concerns add fields here without changing call sites that don't care.

    interface AugmentOpts {
        filter?: readonly SenseChannel[];
    }
    Index

    Properties

    Properties

    filter?: readonly SenseChannel[]