Files
smartwatch/ts/smartwatch.plugins.ts

29 lines
450 B
TypeScript
Raw Normal View History

2021-11-29 20:26:59 +01:00
// node native
2021-12-01 02:04:21 +01:00
import * as fs from 'fs';
2021-11-29 20:26:59 +01:00
import * as path from 'path';
export {
2021-12-01 02:04:21 +01:00
fs,
2021-11-29 20:26:59 +01:00
path
}
// @pushrocks scope
2024-01-28 01:18:39 +01:00
import * as lik from '@push.rocks/lik';
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartrx from '@push.rocks/smartrx';
import { Smartenv } from '@push.rocks/smartenv';
2021-11-29 20:26:59 +01:00
export {
lik,
smartpromise,
smartrx,
Smartenv
2021-11-29 20:26:59 +01:00
}
// thirdparty scope
import picomatch from 'picomatch';
2021-11-29 20:26:59 +01:00
export {
picomatch,
2024-01-28 01:18:39 +01:00
}