@qiwi/substrate-types
Advanced tools
Comparing version 1.20.1 to 1.21.0
@@ -0,1 +1,9 @@ | ||
# @qiwi/substrate-types [1.21.0](https://github.com/qiwi/substrate/compare/@qiwi/substrate-types@1.20.1...@qiwi/substrate-types@1.21.0) (2019-12-23) | ||
### Features | ||
* add scope for std implementations ([4e7db08](https://github.com/qiwi/substrate/commit/4e7db089e68ff31a94be8bcd1ed7d8674372cfdd)), closes [#40](https://github.com/qiwi/substrate/issues/40) | ||
* **types:** add toArray method for IStack ([f0f36b9](https://github.com/qiwi/substrate/commit/f0f36b95cbcdcbfef56947f046164b962a169de6)) | ||
## @qiwi/substrate-types [1.20.1](https://github.com/qiwi/substrate/compare/@qiwi/substrate-types@1.20.0...@qiwi/substrate-types@1.20.1) (2019-12-15) | ||
@@ -2,0 +10,0 @@ |
{ | ||
"name": "@qiwi/substrate-types", | ||
"version": "1.20.1", | ||
"version": "1.21.0", | ||
"main": "target/es5/index.js", | ||
@@ -28,5 +28,5 @@ "source": "target/ts/index.ts", | ||
"flowgen": "flowgen typings/index.d.ts --output-file typings/index.flow.js", | ||
"test": "cp typings/index.d.ts src/test/ts/index.d.ts && yarn dtslint", | ||
"test": "cp typings/index.d.ts src/test/ts/libdef/index.d.ts && yarn dtslint", | ||
"jest": "jest --config=jest.config.json", | ||
"dtslint": "dtslint src/test/ts --localTs ../../node_modules/typescript/lib --expectOnly", | ||
"dtslint": "dtslint src/test/ts/libdef --localTs ../../node_modules/typescript/lib --expectOnly", | ||
"aliasgen": "node -r esm ../../scripts/js/alias-gen.js", | ||
@@ -45,5 +45,5 @@ "docs": "typedoc --readme README.md --tsconfig ./tsconfig.json ./src/main || exit 0" | ||
"@types/config": "^0.0.36", | ||
"@types/jest": "^24.0.23", | ||
"@types/jest": "^24.0.24", | ||
"@types/lodash": "^4.14.149", | ||
"@types/node": "^12.12.17", | ||
"@types/node": "^13.1.0", | ||
"@types/parsimmon": "^1.10.0", | ||
@@ -62,5 +62,5 @@ "@types/underscore": "^1.9.4", | ||
"ts-to-flow": "^0.0.3", | ||
"typescript": "3.7.3", | ||
"typescript": "3.7.4", | ||
"underscore": "^1.9.1", | ||
"typedoc": "^0.15.4", | ||
"typedoc": "^0.15.5", | ||
"typedoc-plugin-external-module-name": "^2.1.0" | ||
@@ -67,0 +67,0 @@ }, |
@@ -16,3 +16,3 @@ /** @module @qiwi/substrate-types */ | ||
export { IMoney as Money } from './IMoney'; | ||
export { IStack as Stack } from './IStack'; | ||
export {} from './IStack'; | ||
export { ICollection as Collection } from './ICollection'; | ||
@@ -19,0 +19,0 @@ export { TPredicate as Predicate } from './TPredicate'; |
@@ -13,2 +13,3 @@ /** @module @qiwi/substrate-types */ | ||
last: () => T | undefined; | ||
toArray(): Array<T>; | ||
} |
@@ -16,3 +16,3 @@ /** @module @qiwi/substrate-types */ | ||
export { IMoney as Money } from './IMoney'; | ||
export { IStack as Stack } from './IStack'; | ||
export {} from './IStack'; | ||
export { ICollection as Collection } from './ICollection'; | ||
@@ -19,0 +19,0 @@ export { TPredicate as Predicate } from './TPredicate'; |
@@ -13,2 +13,3 @@ /** @module @qiwi/substrate-types */ | ||
last: () => T | undefined; | ||
toArray(): Array<T>; | ||
} |
@@ -17,3 +17,3 @@ /** @module @qiwi/substrate-types */ | ||
export { IMoney as Money } from './IMoney' | ||
export { IStack as Stack } from './IStack' | ||
export { } from './IStack' | ||
export { ICollection as Collection } from './ICollection' | ||
@@ -20,0 +20,0 @@ export { TPredicate as Predicate } from './TPredicate' |
@@ -6,2 +6,1 @@ /** @module @qiwi/substrate-types */ | ||
export * from './aliases' | ||
/** @module @qiwi/substrate-types */ | ||
/** */ | ||
import {IPromise} from './export' | ||
import { IPromise } from './export' | ||
@@ -6,0 +6,0 @@ export const enum IPooledObjectStatus { |
@@ -16,2 +16,3 @@ /** @module @qiwi/substrate-types */ | ||
last: () => T | undefined | ||
toArray(): Array<T> | ||
} |
@@ -230,2 +230,3 @@ declare module '@qiwi/substrate-types/target/es5/IAnyMap' { | ||
last: () => T | undefined; | ||
toArray(): Array<T>; | ||
} | ||
@@ -308,3 +309,3 @@ } | ||
export { IMoney as Money } from '@qiwi/substrate-types/target/es5/IMoney'; | ||
export { IStack as Stack } from '@qiwi/substrate-types/target/es5/IStack'; | ||
export {} from '@qiwi/substrate-types/target/es5/IStack'; | ||
export { ICollection as Collection } from '@qiwi/substrate-types/target/es5/ICollection'; | ||
@@ -311,0 +312,0 @@ export { TPredicate as Predicate } from '@qiwi/substrate-types/target/es5/TPredicate'; |
@@ -343,2 +343,3 @@ /** | ||
last: () => T | void, | ||
toArray(): Array<T>, | ||
... | ||
@@ -480,3 +481,3 @@ } & ICollection<T>; | ||
declare export {} from "@qiwi/substrate-types/target/es5/IPromise"; | ||
declare export {} from "@qiwi/substrate-types/target/es5/IStack"; | ||
@@ -487,4 +488,2 @@ declare export { IStorage as Storage } from "@qiwi/substrate-types/target/es5/IStorage"; | ||
declare export { IStack as Stack } from "@qiwi/substrate-types/target/es5/IStack"; | ||
declare export { ICollection as Collection } from "@qiwi/substrate-types/target/es5/ICollection"; | ||
@@ -491,0 +490,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
87361
1860