UNPKG

homebridge-config-ui-x

Version:

A web based management, configuration and control platform for Homebridge.

15 lines (14 loc) 325 B
export interface DockerRelease { tag_name: string; published_at: string; prerelease: boolean; body: string; } export interface DockerReleaseInfo { version: string; publishedAt: string; isPrerelease: boolean; isTest: boolean; testTag: 'beta' | 'test' | null; isLatestStable: boolean; }