mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +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;
|
|
}
|