smartlog-destination-file/ts/smartfile-destination-file.plugins.ts

20 lines
355 B
TypeScript
Raw Normal View History

2020-06-13 11:03:08 +00:00
// node native scope
import * as fs from 'fs';
import * as path from 'path';
export {
2020-06-15 15:16:47 +00:00
fs,
path
2020-06-13 11:03:08 +00:00
};
// pushrocks scope
2020-06-15 15:16:47 +00:00
import * as smartfile from '@pushrocks/smartfile';
2020-06-13 11:03:08 +00:00
import * as smartlogInterfaces from '@pushrocks/smartlog-interfaces';
2020-06-15 15:16:47 +00:00
import * as smarttime from '@pushrocks/smarttime';
2020-06-13 11:03:08 +00:00
export {
2020-06-15 15:16:47 +00:00
smartfile,
smartlogInterfaces,
smarttime
2020-06-13 11:03:08 +00:00
};