Files
smartmime/ts/smartmime.plugins.ts

11 lines
183 B
TypeScript
Raw Normal View History

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