Add TypeScript integrations package
This commit is contained in:
@@ -0,0 +1 @@
|
||||
This folder is generated from Home Assistant component metadata. Replace it with a handwritten TypeScript port when implementing runtime support.
|
||||
@@ -0,0 +1,2 @@
|
||||
export * from './novy_cooker_hood.classes.integration.js';
|
||||
export * from './novy_cooker_hood.types.js';
|
||||
@@ -0,0 +1,29 @@
|
||||
import { DescriptorOnlyIntegration } from '../../core/classes.descriptoronlyintegration.js';
|
||||
|
||||
export class HomeAssistantNovyCookerHoodIntegration extends DescriptorOnlyIntegration {
|
||||
constructor() {
|
||||
super({
|
||||
domain: "novy_cooker_hood",
|
||||
displayName: "Novy Cooker Hood",
|
||||
status: 'descriptor-only',
|
||||
metadata: {
|
||||
"source": "home-assistant/core",
|
||||
"upstreamPath": "homeassistant/components/novy_cooker_hood",
|
||||
"upstreamDomain": "novy_cooker_hood",
|
||||
"integrationType": "device",
|
||||
"iotClass": "assumed_state",
|
||||
"qualityScale": "bronze",
|
||||
"requirements": [
|
||||
"rf-protocols==2.2.0"
|
||||
],
|
||||
"dependencies": [
|
||||
"radio_frequency"
|
||||
],
|
||||
"afterDependencies": [],
|
||||
"codeowners": [
|
||||
"@piitaya"
|
||||
]
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
export interface IHomeAssistantNovyCookerHoodConfig {
|
||||
// TODO: replace with the TypeScript-native config for novy_cooker_hood.
|
||||
[key: string]: unknown;
|
||||
}
|
||||
Reference in New Issue
Block a user