tuil
ReferencePackages@mwillbanks/tuil-focusAPI

FocusNode

interface exported by @mwillbanks/tuil-focus.

View rawEdit

interface

Public interface exported by @mwillbanks/tuil-focus.

export interface FocusNode {
  readonly id: string;
  readonly parentId?: string;
  readonly scopeId?: string;
  readonly disabled: boolean;
  readonly hidden: boolean;
  readonly order: number;
  readonly role?: string;
  readonly label?: string;
  readonly bounds?: TerminalBounds;
}

Members

MemberTypeRequiredDescriptionRelated types
idstringYesThe id member uses the string contract.
parentIdstring | undefinedNoThe parentId member uses the string | undefined contract.
scopeIdstring | undefinedNoThe scopeId member uses the string | undefined contract.
disabledbooleanYesThe disabled member uses the boolean contract.
hiddenbooleanYesThe hidden member uses the boolean contract.
ordernumberYesThe order member uses the number contract.
rolestring | undefinedNoThe role member uses the string | undefined contract.
labelstring | undefinedNoThe label member uses the string | undefined contract.
boundsTerminalBounds | undefinedNoThe bounds member uses the TerminalBounds | undefined contract.TerminalBounds

Parameters

This declaration has no public members.

Returns

This declaration does not return a value.

Throws

No thrown errors are documented for this declaration.

No package-local related types.

Source

View the secondary source reference

Package

@mwillbanks/tuil-focus

On this page