Add missing import for duration selector (#15960)

This commit is contained in:
karwosts 2023-03-28 17:25:06 -07:00 committed by GitHub
parent 0f97a76428
commit 4d52913a01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,8 @@ import { html, LitElement } from "lit";
import { customElement, property } from "lit/decorators";
import type { DurationSelector } from "../../data/selector";
import type { HomeAssistant } from "../../types";
import { HaDurationData } from "../ha-duration-input";
import type { HaDurationData } from "../ha-duration-input";
import "../ha-duration-input";
@customElement("ha-selector-duration")
export class HaTimeDuration extends LitElement {