mirror of
https://github.com/home-assistant/frontend.git
synced 2025-10-09 19:59:43 +00:00
![renovate[bot]](/assets/img/avatar_default.png)
* Update dependency prettier to v3.1.0 * Reformat --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Steve Repsher <steverep@users.noreply.github.com>
9 lines
202 B
TypeScript
9 lines
202 B
TypeScript
import { MAIN_WINDOW_NAME } from "../../data/main_window";
|
|
|
|
export const mainWindow =
|
|
window.name === MAIN_WINDOW_NAME
|
|
? window
|
|
: parent.name === MAIN_WINDOW_NAME
|
|
? parent
|
|
: top!;
|