The interface for elements that can be focused.

interface IFocusable {
    blur(): void;
    focus(select?: boolean): void;
}

Implemented by

Methods

Methods