27 lines
652 B
TypeScript
27 lines
652 B
TypeScript
import { DescriptorOnlyIntegration } from '../../core/classes.descriptoronlyintegration.js';
|
|
|
|
export class HomeAssistantMutesyncIntegration extends DescriptorOnlyIntegration {
|
|
constructor() {
|
|
super({
|
|
domain: "mutesync",
|
|
displayName: "mutesync",
|
|
status: 'descriptor-only',
|
|
metadata: {
|
|
"source": "home-assistant/core",
|
|
"upstreamPath": "homeassistant/components/mutesync",
|
|
"upstreamDomain": "mutesync",
|
|
"integrationType": "service",
|
|
"iotClass": "local_polling",
|
|
"requirements": [
|
|
"mutesync==0.0.1"
|
|
],
|
|
"dependencies": [],
|
|
"afterDependencies": [],
|
|
"codeowners": [
|
|
"@currentoor"
|
|
]
|
|
},
|
|
});
|
|
}
|
|
}
|