17 lines
217 B
TypeScript
17 lines
217 B
TypeScript
// native
|
|
import * as path from 'path';
|
|
|
|
export {
|
|
path
|
|
}
|
|
|
|
// @pushrocks scope
|
|
import * as smartfile from '@pushrocks/smartfile';
|
|
import * as smartlog from '@pushrocks/smartlog';
|
|
|
|
export {
|
|
smartfile,
|
|
smartlog
|
|
}
|
|
|