From 7c9f179f5761d143710f964e84773b969ed8a665 Mon Sep 17 00:00:00 2001 From: snowgitea Date: Wed, 1 Jul 2026 17:57:47 +0800 Subject: [PATCH] chore: typings/plugin.d.ts --- typings/plugin.d.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 typings/plugin.d.ts diff --git a/typings/plugin.d.ts b/typings/plugin.d.ts new file mode 100644 index 0000000..e2ae5a0 --- /dev/null +++ b/typings/plugin.d.ts @@ -0,0 +1,8 @@ +import { BaseUpload, MODETYPE } from './upload'; +type AnyString = string & {}; +/** + * 插件类型声明 + */ +interface PluginMap { + upload: BaseUpload; +}