File tree Expand file tree Collapse file tree 4 files changed +16
-10
lines changed Expand file tree Collapse file tree 4 files changed +16
-10
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,14 @@ All notable changes to this project will be documented in this file.
6
6
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
7
7
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
8
8
9
+ ## [ 1.0.1] - 2019-12-12 ##
10
+
11
+ [ 1.0.1 ] : https://github.com/mfederczuk/deeptools/compare/v1.0.0...v1.0.1
12
+
13
+ ### Fixed ###
14
+
15
+ * Fixed the typings file
16
+
9
17
## [ 1.0.0] - 2019-12-12 ##
10
18
11
19
[ 1.0.0 ] : https://github.com/mfederczuk/deeptools/releases/tag/v1.0.0
Original file line number Diff line number Diff line change 1
1
# DeepTools #
2
2
3
- [ version_shield ] : https://img.shields.io/badge/version-1.0.0 -blue.svg
3
+ [ version_shield ] : https://img.shields.io/badge/version-1.0.1 -blue.svg
4
4
[ latest_release ] : https://github.com/mfederczuk/deep-tools/releases/latest " Latest Release "
5
5
[ ![ version: N/A] [ version_shield ]] [ latest_release ]
6
6
[ ![ Changelog] ( https://img.shields.io/badge/-Changelog-blue )] ( ./CHANGELOG.md " Changelog ")
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @mfederczuk/deeptools" ,
3
- "version" : " 1.0.0 " ,
3
+ "version" : " 1.0.1 " ,
4
4
"description" : " A set of utility functions that recursively operate on objects" ,
5
5
"main" : " src/index.js" ,
6
6
"types" : " types/index.d.ts" ,
Original file line number Diff line number Diff line change 16
16
* along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
*/
18
18
19
- declare module "deeptools" {
20
- export function deepCopy < T > ( obj : T ) : T ;
19
+ export declare function deepCopy < T > ( obj : T ) : T ;
21
20
22
- export function deepEquals ( obj1 : any , obj2 : any ) : boolean ;
21
+ export declare function deepEquals ( obj1 : any , obj2 : any ) : boolean ;
23
22
24
- export function deepFreeze < T > ( arr : T [ ] ) : ReadonlyArray < T > ;
25
- export function deepFreeze < T extends Function > ( fun : T ) : T ;
26
- export function deepFreeze < T > ( obj : T ) : Readonly < T > ;
23
+ export declare function deepFreeze < T > ( arr : T [ ] ) : ReadonlyArray < T > ;
24
+ export declare function deepFreeze < T extends Function > ( fun : T ) : T ;
25
+ export declare function deepFreeze < T > ( obj : T ) : Readonly < T > ;
27
26
28
- export function safeCopy < T > ( obj : T ) : T ;
29
- }
27
+ export declare function safeCopy < T > ( obj : T ) : T ;
You can’t perform that action at this time.
0 commit comments