chargingPie-admin/typings/index.d.ts

20 lines
454 B
TypeScript

/*
* @Author: micky
* @Date: 2024-07-17 17:01:15
* @LastEditors: micky
* @LastEditTime: 2024-07-17 18:46:55
* @FilePath: \maintenance-admin\typings\index.d.ts
*/
declare module 'vue3-video-play'
declare module 'css-color-function'
declare module 'vue3-eventbus'
declare module 'element-plus'
declare module '@element-plus/icons-vue'
type PromiseFun = (...arg: any[]) => Promise<any>
declare interface Fn<T = any, R = T> {
(...arg: T[]): R
}