1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00
Files
browser/apps/browser/src/autofill/services/abstractions/dom-element-visibility.service.ts

5 lines
173 B
TypeScript

export interface DomElementVisibilityService {
isElementViewable: (element: HTMLElement) => Promise<boolean>;
isElementHiddenByCss: (element: HTMLElement) => boolean;
}