feat: app功能基本实现
This commit is contained in:
Vendored
+13
@@ -23,9 +23,22 @@ declare namespace NodeJS {
|
||||
* @see https://taro-docs.jd.com/docs/next/env-mode-config#特殊环境变量-taro_app_id
|
||||
*/
|
||||
TARO_APP_ID: string
|
||||
TARO_APP_API_BASE: string
|
||||
}
|
||||
}
|
||||
|
||||
declare module '@tarojs/components' {
|
||||
export * from '@tarojs/components/types/index.vue3'
|
||||
}
|
||||
|
||||
declare module '@qiun/ucharts' {
|
||||
interface UChartsOptions {
|
||||
[key: string]: unknown
|
||||
}
|
||||
|
||||
export default class UCharts {
|
||||
constructor(options: UChartsOptions)
|
||||
updateData(data: UChartsOptions): void
|
||||
showToolTip(event: unknown, options?: UChartsOptions): void
|
||||
}
|
||||
}
|
||||
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
declare module 'wxmp-rsa' {
|
||||
export default class WxmpRsa {
|
||||
setPublicKey(publicKey: string): void
|
||||
encrypt(text: string): string | false
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user