Files
integrations/ts/integrations/peco_opower/peco_opower.classes.integration.ts
T

22 lines
604 B
TypeScript
Raw Normal View History

2026-05-05 12:01:30 +00:00
import { DescriptorOnlyIntegration } from '../../core/classes.descriptoronlyintegration.js';
export class HomeAssistantPecoOpowerIntegration extends DescriptorOnlyIntegration {
constructor() {
super({
domain: "peco_opower",
displayName: "PECO Energy Company (PECO)",
status: 'descriptor-only',
metadata: {
"source": "home-assistant/core",
"upstreamPath": "homeassistant/components/peco_opower",
"upstreamDomain": "peco_opower",
"integrationType": "virtual",
"requirements": [],
"dependencies": [],
"afterDependencies": [],
"codeowners": []
},
});
}
}