Saxonberg Server API
    Preparing search index...

    Interface AliasEntry

    One resolved alias entry. The source field reports which tier in the lookup chain produced this value; consumers (the alias list controller, the expander's audit trail) read it for display.

    description is populated only when source === 'default' — persistent storage is body-only, so user-set descriptions don't round-trip. See AliasMixin's class-level comment.

    interface AliasEntry {
        body: string;
        description?: string;
        name: string;
        source: "default" | "persistent" | "session";
    }
    Index

    Properties

    body: string
    description?: string
    name: string
    source: "default" | "persistent" | "session"