Files
2026-05-05 12:03:46 +00:00

14 lines
400 B
TypeScript

// Native scope
import * as fs from 'node:fs/promises';
import * as path from 'node:path';
export { fs, path };
// Project scope
import * as shxApi from '@smarthome.exchange/api';
import * as shxHub from '@smarthome.exchange/hub';
import * as shxInterfaces from '@smarthome.exchange/interfaces';
import * as shxSdk from '@smarthome.exchange/sdk';
export { shxApi, shxHub, shxInterfaces, shxSdk };