10 lines
282 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 解决 无法找到模块 'uview-plus' 的声明文件参考https://blog.csdn.net/qq1014156094/article/details/107316969
declare module 'uview-plus';
// 为 UniApp.Uni 扩展 $u 属性
declare namespace UniNamespace {
export interface UniInterface {
$u?: any;
}
}