chore: typings/plugin.d.ts

This commit is contained in:
2026-07-01 17:57:47 +08:00
parent 6aee70d43d
commit 7c9f179f57
+8
View File
@@ -0,0 +1,8 @@
import { BaseUpload, MODETYPE } from './upload';
type AnyString = string & {};
/**
* 插件类型声明
*/
interface PluginMap {
upload: BaseUpload;
}