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
+16
View File
@@ -0,0 +1,16 @@
// Native scope
import * as fs from 'node:fs/promises';
import * as path from 'node:path';
import * as crypto from 'node:crypto';
export { crypto, fs, path };
// Project scope
import * as shxInterfaces from '@smarthome.exchange/interfaces';
export { shxInterfaces };
// Existing lower-level device/protocol helper package.
import * as ecobridgeDeviceManager from '@ecobridge.xyz/devicemanager';
export { ecobridgeDeviceManager };