node-iso11649
Advanced tools
Comparing version 2.1.0 to 2.1.1
# Changelog | ||
This project uses [Semantic Versioning](http://semver.org/) | ||
## 2.1.1 (2020-28-04) | ||
- [Fix types](https://github.com/nruotsal/node-iso11649/pull/170) by [davidknezic](https://github.com/davidknezic) | ||
## 2.1.0 (2020-30-03) | ||
@@ -5,0 +8,0 @@ - [Add parse function](https://github.com/nruotsal/node-iso11649/pull/150) by [davidknezic](https://github.com/davidknezic) |
@@ -6,7 +6,7 @@ export interface GenerateOptions { | ||
declare function generate(reference?: string) => string; | ||
declare function generate(options: GenerateOptions) => string; | ||
declare function validate(reference: string) => boolean; | ||
declare const parse: (reference: string) => string | null; | ||
declare function generate(reference?: string): string; | ||
declare function generate(options: GenerateOptions): string; | ||
declare function validate(reference: string): boolean; | ||
declare function parse(reference: string): string | null; | ||
export { generate, validate, parse } |
{ | ||
"name": "node-iso11649", | ||
"version": "2.1.0", | ||
"version": "2.1.1", | ||
"description": "ISO 11649:2009 creditor reference library for node", | ||
@@ -37,6 +37,6 @@ "main": "dist/index.js", | ||
"devDependencies": { | ||
"@types/tape": "4.2.34", | ||
"@typescript-eslint/eslint-plugin": "2.25.0", | ||
"@types/tape": "4.13.0", | ||
"@typescript-eslint/eslint-plugin": "2.30.0", | ||
"eslint": "6.8.0", | ||
"eslint-config-standard-with-typescript": "15.0.1", | ||
"eslint-config-standard-with-typescript": "16.0.0", | ||
"eslint-plugin-import": "2.20.2", | ||
@@ -48,6 +48,6 @@ "eslint-plugin-node": "11.1.0", | ||
"faucet": "0.0.1", | ||
"rollup": "2.3.0", | ||
"rollup": "2.7.3", | ||
"rollup-plugin-typescript": "1.0.1", | ||
"tape": "4.13.2", | ||
"ts-node": "8.8.1", | ||
"tape": "5.0.0", | ||
"ts-node": "8.9.1", | ||
"tslib": "1.11.1", | ||
@@ -54,0 +54,0 @@ "typescript": "3.8.3" |
10189