2026-05-05 12:01:30 +00:00
|
|
|
// Native scope
|
|
|
|
|
import * as fs from 'node:fs/promises';
|
|
|
|
|
import * as path from 'node:path';
|
|
|
|
|
import * as crypto from 'node:crypto';
|
2026-05-05 12:56:38 +00:00
|
|
|
import * as net from 'node:net';
|
2026-05-05 12:41:31 +00:00
|
|
|
import * as tls from 'node:tls';
|
2026-05-05 12:01:30 +00:00
|
|
|
|
2026-05-05 12:56:38 +00:00
|
|
|
export { crypto, fs, net, path, tls };
|
2026-05-05 12:01:30 +00:00
|
|
|
|
|
|
|
|
// 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 };
|