Files
smartwatch/ts/smartwatch.plugins.ts

29 lines
450 B
TypeScript

// node native
import * as fs from 'fs';
import * as path from 'path';
export {
fs,
path
}
// @pushrocks scope
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';
export {
lik,
smartpromise,
smartrx,
Smartenv
}
// thirdparty scope
import picomatch from 'picomatch';
export {
picomatch,
}