mirror of
https://github.com/home-assistant/frontend.git
synced 2026-05-30 03:53:30 +01:00
11 lines
283 B
TypeScript
11 lines
283 B
TypeScript
import { HomeAssistant } from "../types";
|
|
|
|
export const documentationUrl = (hass: HomeAssistant, path: string) =>
|
|
`https://${
|
|
hass.config.version.includes("b")
|
|
? "rc"
|
|
: hass.config.version.includes("dev")
|
|
? "next"
|
|
: "www"
|
|
}.home-assistant.io${path}`;
|