cool-admin-midway/typings/plugin.d.ts
2024-05-28 15:22:15 +08:00

13 lines
277 B
TypeScript

import * as wx from './wx';
import * as uniphone from './uniphone';
import { BaseUpload, MODETYPE } from './upload';
type AnyString = string & {};
/**
* 插件类型声明
*/
interface PluginMap {
wx: wx.CoolPlugin;
upload: BaseUpload;
uniphone: uniphone.CoolPlugin;
}