mini-types
Advanced tools
Comparing version 0.1.6 to 0.1.7
@@ -0,1 +1,7 @@ | ||
# 0.1.7 | ||
* **Bug Fix** | ||
- 修复 `IFailResult` 类型引入问题。 | ||
# 0.1.6 | ||
@@ -2,0 +8,0 @@ |
{ | ||
"name": "mini-types", | ||
"version": "0.1.6", | ||
"version": "0.1.7", | ||
"description": "TypeScript declarations for Alipay's mini program.", | ||
@@ -5,0 +5,0 @@ "scripts": { |
/** | ||
* @file 屏幕亮度 | ||
*/ | ||
import IFailResult from "../../common/IFailResult"; | ||
// tslint:disable-next-line:no-bad-reference | ||
/// <reference path="../../common/IFailResult.d.ts" /> | ||
@@ -6,0 +7,0 @@ declare namespace my { |
@@ -1,4 +0,6 @@ | ||
export default interface IFailResult { | ||
readonly error?: number; | ||
readonly errorMessage?: string; | ||
declare namespace my { | ||
interface IFailResult { | ||
readonly error?: number; | ||
readonly errorMessage?: string; | ||
} | ||
} |
@@ -5,5 +5,4 @@ { | ||
"interface-name" : [true, "always-prefix"], | ||
"strict-export-declare-modifiers": false, | ||
"no-redundant-jsdoc": false | ||
} | ||
} |
188723
6448