@mini-types/my
Advanced tools
Comparing version 0.1.4 to 0.1.5
{ | ||
"name": "@mini-types/my", | ||
"version": "0.1.4", | ||
"version": "0.1.5", | ||
"description": "TypeScript declarations for Alipay's mini program.", | ||
@@ -23,3 +23,3 @@ "scripts": {}, | ||
}, | ||
"gitHead": "95a762b80ba4c3c0898688c31ad7c9fb22f1ab9e" | ||
"gitHead": "8852f09c7a843a1bd912bc808a63fc4a48d79faa" | ||
} |
@@ -10,4 +10,4 @@ declare namespace my { | ||
name: string, | ||
opt: object, | ||
callback: (resp: object) => void | ||
opt: any, | ||
callback: (resp: any) => void | ||
): void; | ||
@@ -19,3 +19,3 @@ /** | ||
*/ | ||
export function call(name: string, callback: (resp: object) => void): void; | ||
export function call(name: string, callback: (resp: any) => void): void; | ||
/** | ||
@@ -26,3 +26,3 @@ * @description 无回调返回 Promise 形式 | ||
*/ | ||
export function call(name: string, opt?: object): Promise<object>; | ||
export function call(name: string, opt?: any): Promise<any>; | ||
@@ -29,0 +29,0 @@ /** |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
375799