smartmime/ts/smartmime.plugins.ts

11 lines
183 B
TypeScript
Raw Permalink Normal View History

2020-03-04 14:21:44 +00:00
// node native scope
import * as path from 'path';
2021-08-10 09:49:39 +00:00
export { path };
2020-03-04 14:21:44 +00:00
// thirdparty scope
2024-05-20 22:57:24 +00:00
import * as fileType from 'file-type';
import mime from 'mime';
2020-03-04 14:21:44 +00:00
2024-05-20 22:57:24 +00:00
export { fileType, mime, };