interface WindowElement {
    children?: WindowElement[];
    className?: string;
    clickablePoint?: Point;
    expandCollapsedState?: ExpandCollapseState;
    helpText?: string;
    id?: string;
    isEnabled?: boolean;
    isFocused?: boolean;
    isKeyboardFocusable?: boolean;
    isReadOnly?: boolean;
    isRequiredForForm?: boolean;
    isVisible?: boolean;
    region?: Region;
    role?: string;
    selectedText?: string;
    subRole?: string;
    title?: string;
    type?: string;
    value?: string;
}

Properties

children?: WindowElement[]
className?: string
clickablePoint?: Point
expandCollapsedState?: ExpandCollapseState
helpText?: string
id?: string
isEnabled?: boolean
isFocused?: boolean
isKeyboardFocusable?: boolean
isReadOnly?: boolean
isRequiredForForm?: boolean
isVisible?: boolean
region?: Region
role?: string
selectedText?: string
subRole?: string
title?: string
type?: string
value?: string

Generated using TypeDoc