Files
hassos_config/www/community/Ultra-Vehicle-Card/entity-picker.d.ts
2025-06-23 12:40:35 +02:00

12 lines
397 B
TypeScript

import { LitElement } from 'lit';
import { HomeAssistant } from 'custom-card-helpers';
export declare class UltraEntityPicker extends LitElement {
hass: HomeAssistant;
label: string;
value?: string;
entityFilter?: (entityId: string) => boolean;
static get styles(): import("lit").CSSResult;
protected render(): import("lit").TemplateResult<1>;
private _valueChanged;
}