UNPKG

web-error-monitor

Version:

ts实现前端项目源码上传、错误信息监控

15 lines (14 loc) 350 B
/** vite插件类型 */ type VitePluginZipPackType = { name: string; apply: "build"; closeBundle: () => void; }; type SourceMapUploaderType = { uploadURL: string; enable?: boolean; }; declare const _default: { pluginSourceMapUploaderVite: (options: SourceMapUploaderType) => VitePluginZipPackType; }; export default _default;