HelpRequest
HelpRequest
A request for one topic in a URL-addressable help document.
type HelpRequest = {
/** Absolute document URL without a fragment. */
src: string;
/** Stable heading id to show first. */
anchor?: string | undefined;
/** Explicit flyout title. */
title?: string | undefined;
/** Element whose bounds the contextual flyout should align with. */
placementTarget?: HTMLElement | undefined;
/** Originating control used for focus restoration. */
trigger?: HTMLElement | undefined;
}