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