mirror of
https://github.com/home-assistant/frontend.git
synced 2025-12-25 05:06:18 +00:00
10 lines
206 B
TypeScript
10 lines
206 B
TypeScript
import { HomeAssistant } from "../types";
|
|
|
|
export interface LogProvider {
|
|
key: string;
|
|
name: string;
|
|
}
|
|
|
|
export const fetchErrorLog = (hass: HomeAssistant) =>
|
|
hass.callApi<string>("GET", "error_log");
|