@naturalcycles/js-lib
Advanced tools
Comparing version 8.2.0 to 8.2.1
@@ -0,1 +1,8 @@ | ||
## [8.2.1](https://github.com/NaturalCycles/js-lib/compare/v8.2.0...v8.2.1) (2019-07-18) | ||
### Bug Fixes | ||
* export MemoizedFunction ([2e894b0](https://github.com/NaturalCycles/js-lib/commit/2e894b0)) | ||
# [8.2.0](https://github.com/NaturalCycles/js-lib/compare/v8.1.0...v8.2.0) (2019-07-18) | ||
@@ -2,0 +9,0 @@ |
import { MemoOpts } from '../decorators/memo.decorator'; | ||
import { MemoCache } from '../decorators/memo.util'; | ||
interface MemoizedFunction { | ||
export interface MemoizedFunction { | ||
cache: MemoCache; | ||
} | ||
export declare function memoFn<T extends (...args: any[]) => any>(fn: T, opts?: MemoOpts): T & MemoizedFunction; | ||
export {}; |
{ | ||
"name": "@naturalcycles/js-lib", | ||
"version": "8.2.0", | ||
"version": "8.2.1", | ||
"scripts": { | ||
@@ -5,0 +5,0 @@ "build": "del ./dist && tsc", |
@@ -6,3 +6,3 @@ import { getArgsSignature } from '../decorators/decorator.util' | ||
interface MemoizedFunction { | ||
export interface MemoizedFunction { | ||
cache: MemoCache | ||
@@ -9,0 +9,0 @@ } |
225956
4329