14 lines
153 B
TypeScript
14 lines
153 B
TypeScript
// node native scope
|
|
import * as path from 'path';
|
|
|
|
export {
|
|
path
|
|
};
|
|
|
|
// thirdparty scope
|
|
import mimeTypes from 'mime-types';
|
|
|
|
export {
|
|
mimeTypes
|
|
};
|