mirror of
https://github.com/bitwarden/browser
synced 2026-02-12 22:44:11 +00:00
9 lines
204 B
TypeScript
9 lines
204 B
TypeScript
/**
|
|
* Interface for implementing focusable components.
|
|
*
|
|
* Used by the `AutofocusDirective` and `A11yGridDirective`.
|
|
*/
|
|
export abstract class FocusableElement {
|
|
getFocusTarget: () => HTMLElement;
|
|
}
|