mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00: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 {};
|