The BarProp interface of the Document Object Model represents the web browser user interface elements that are exposed to scripts in web pages.

MDN Reference

interface BarProp {
    visible: boolean;
}
Index

Properties

Properties

visible: boolean

The visible read-only property of the BarProp interface returns true if the user interface element it represents is visible.

MDN Reference