first commit

This commit is contained in:
Your Name
2026-09-08 11:40:15 +08:00
commit a5353f7eb5
9568 changed files with 1646214 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
/// <reference types="vite/client" />
declare module '*.vue' {
import { DefineComponent } from 'vue'
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
const component: DefineComponent<{}, {}, any>
export default component
}
declare interface Window {
signLink: string
}
declare module 'uview-plus'
declare module 'weixin-js-sdk'
declare module 'css-color-function'
+10
View File
@@ -0,0 +1,10 @@
import 'uniapp-router-next'
declare module 'uniapp-router-next' {
// 扩展 RouteMeta
interface RouteMeta {
share?: boolean
auth?: boolean
white?: string
isTab?: boolean
}
}
+3
View File
@@ -0,0 +1,3 @@
interface Uni {
$u: any
}
+12
View File
@@ -0,0 +1,12 @@
import 'vue'
declare module 'vue' {
interface ComponentCustomProperties {
$theme: {
primaryColor: string
pageStyle: string
navColor: string
navBgColor: string
title: string
}
}
}