17 lines
435 B
TypeScript
17 lines
435 B
TypeScript
// 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 };
|