Member Junction
    Preparing search index...
    interface PrepareServerExtensionOptions {
        extraReservedRoots?: readonly string[];
        onInvalid?: (message: string) => void;
        onOverlap?: (message: string) => void;
        source?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    extraReservedRoots?: readonly string[]

    Additional reserved roots from the running server (graphqlRootPath, WIDGET_MOUNT_PATH, …). Compared case-insensitively and bidirectionally (an extension at /telephony collides with a core mount at /telephony/twilio).

    onInvalid?: (message: string) => void

    Called once per skipped/invalid entry. Tests pass a spy; production logs.

    onOverlap?: (message: string) => void
    source?: string

    Label used in skip messages (package name, file path, etc.).