mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 14:59:16 +01:00
9 lines
388 B
TypeScript
9 lines
388 B
TypeScript
export declare function ariaHidden(hide: boolean, node: Element | null | undefined): void;
|
|
interface SiblingExclusions {
|
|
dialog: Element;
|
|
backdrop: Element;
|
|
}
|
|
export declare function hideSiblings(container: Element, { dialog, backdrop }: SiblingExclusions): void;
|
|
export declare function showSiblings(container: Element, { dialog, backdrop }: SiblingExclusions): void;
|
|
export {};
|