23 lines
616 B
TypeScript
23 lines
616 B
TypeScript
|
|
import { DescriptorOnlyIntegration } from '../../core/classes.descriptoronlyintegration.js';
|
||
|
|
|
||
|
|
export class HomeAssistantGoogleWifiIntegration extends DescriptorOnlyIntegration {
|
||
|
|
constructor() {
|
||
|
|
super({
|
||
|
|
domain: "google_wifi",
|
||
|
|
displayName: "Google Wifi",
|
||
|
|
status: 'descriptor-only',
|
||
|
|
metadata: {
|
||
|
|
"source": "home-assistant/core",
|
||
|
|
"upstreamPath": "homeassistant/components/google_wifi",
|
||
|
|
"upstreamDomain": "google_wifi",
|
||
|
|
"iotClass": "local_polling",
|
||
|
|
"qualityScale": "legacy",
|
||
|
|
"requirements": [],
|
||
|
|
"dependencies": [],
|
||
|
|
"afterDependencies": [],
|
||
|
|
"codeowners": []
|
||
|
|
},
|
||
|
|
});
|
||
|
|
}
|
||
|
|
}
|