mirror of
https://github.com/Rushilwiz/spaceout.git
synced 2025-04-22 12:29:50 -04:00
7 lines
165 B
TypeScript
7 lines
165 B
TypeScript
/**
|
|
* Return the actively focused element safely.
|
|
*
|
|
* @param doc the document to checl
|
|
*/
|
|
export default function activeElement(doc?: Document): Element | null;
|