cool-admin-midway/typings/plugin.d.ts

13 lines
277 B
TypeScript
Raw Normal View History

2024-05-28 15:22:15 +08:00
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;
}