From 4a7093ddfcd6a230bc0b8c1758f1e541edd0481b Mon Sep 17 00:00:00 2001 From: Jesse Date: Fri, 8 Apr 2022 12:57:12 -0400 Subject: [PATCH] describe null defaults --- js/accessibility/pdom/ParallelDOM.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/accessibility/pdom/ParallelDOM.ts b/js/accessibility/pdom/ParallelDOM.ts index d93d07199..c90ae428f 100644 --- a/js/accessibility/pdom/ParallelDOM.ts +++ b/js/accessibility/pdom/ParallelDOM.ts @@ -215,6 +215,8 @@ const ACCESSIBILITY_OPTION_KEYS = [ 'pdomTransformSourceNode' // {Node|null} - sets the node that controls primary sibling element positioning in the display, see setPDOMTransformSourceNode() ]; +// Most options use null for their default behavior, see the setters for each option for a description of how null +// behaves as a default. export type ParallelDOMOptions = { focusable?: boolean | null; tagName?: string | null;