import { LitElement, css, html } from "lit"; import { customElement, property } from "lit/decorators"; import "../../../components/ha-card"; import { SubscribeMixin } from "../../../mixins/subscribe-mixin"; import { haStyle } from "../../../resources/styles"; import { HomeAssistant } from "../../../types"; import "./ha-debug-connection-row"; @customElement("developer-tools-debug") class HaPanelDevDebug extends SubscribeMixin(LitElement) { @property({ attribute: false }) public hass!: HomeAssistant; @property({ type: Boolean }) public narrow!: boolean; protected render() { return html`