Add TypeScript integrations package

This commit is contained in:
2026-05-05 12:01:30 +00:00
commit e91176fb9b
5889 changed files with 53433 additions and 0 deletions
@@ -0,0 +1 @@
This folder is generated from Home Assistant component metadata. Replace it with a handwritten TypeScript port when implementing runtime support.
+2
View File
@@ -0,0 +1,2 @@
export * from './ripple.classes.integration.js';
export * from './ripple.types.js';
@@ -0,0 +1,24 @@
import { DescriptorOnlyIntegration } from '../../core/classes.descriptoronlyintegration.js';
export class HomeAssistantRippleIntegration extends DescriptorOnlyIntegration {
constructor() {
super({
domain: "ripple",
displayName: "Ripple",
status: 'descriptor-only',
metadata: {
"source": "home-assistant/core",
"upstreamPath": "homeassistant/components/ripple",
"upstreamDomain": "ripple",
"iotClass": "cloud_polling",
"qualityScale": "legacy",
"requirements": [
"python-ripple-api==0.0.3"
],
"dependencies": [],
"afterDependencies": [],
"codeowners": []
},
});
}
}
+4
View File
@@ -0,0 +1,4 @@
export interface IHomeAssistantRippleConfig {
// TODO: replace with the TypeScript-native config for ripple.
[key: string]: unknown;
}