import { gettext } from "django"; import { CSSResult, customElement, html, LitElement, property, TemplateResult } from "lit-element"; import { until } from "lit-html/directives/until"; import { Outpost } from "../../api/Outposts"; import { COMMON_STYLES } from "../../common/styles"; @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``; } }