import { gettext } from "django"; import { CSSResult, customElement, html, LitElement, property, TemplateResult } from "lit-element"; import { until } from "lit-html/directives/until"; import { OutpostsApi } from "../../api"; import { DEFAULT_CONFIG } from "../../api/Config"; import { COMMON_STYLES } from "../../common/styles"; import "../../elements/Spinner"; @customElement("ak-outpost-health") export class OutpostHealth extends LitElement { @property() outpostId?: string; static get styles(): CSSResult[] { return COMMON_STYLES; } render(): TemplateResult { if (!this.outpostId) { return html``; } return html``; } }