14 lines
400 B
TypeScript
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 };
|