Skip to content

Commit

Permalink
running ts tests only
Browse files Browse the repository at this point in the history
  • Loading branch information
khawarizmus committed Apr 18, 2018
1 parent ec4ab64 commit e90d799
Show file tree
Hide file tree
Showing 21 changed files with 67 additions and 34 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
node_modules
dist
dist/
6 changes: 0 additions & 6 deletions dist/src/Apostille.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/src/Apostille.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/src/hashFunctions/md5.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { HashFunction } from './HashFunction';
export declare class MD5 extends HashFunction {
constructor();
signedHashing(data: string): string;
signedHashing(data: string, signerPrivateKey: string): string;
nonSignedHashing(data: string): string;
}
14 changes: 12 additions & 2 deletions dist/src/hashFunctions/md5.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/src/hashFunctions/md5.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/src/hashFunctions/sha1.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { HashFunction } from './HashFunction';
export declare class SHA1 extends HashFunction {
constructor();
signedHashing(data: string): string;
signedHashing(data: string, signerPrivateKey: string): string;
nonSignedHashing(data: string): string;
}
14 changes: 12 additions & 2 deletions dist/src/hashFunctions/sha1.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/src/hashFunctions/sha1.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/src/hashFunctions/sha3-256.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { HashFunction } from './HashFunction';
export declare class SHA3256 extends HashFunction {
constructor();
signedHashing(data: string): string;
signedHashing(data: string, signerPrivateKey: string): string;
nonSignedHashing(data: string): string;
}
14 changes: 12 additions & 2 deletions dist/src/hashFunctions/sha3-256.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/src/hashFunctions/sha3-256.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/src/hashFunctions/sha3-512.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { HashFunction } from './HashFunction';
export declare class SHA3512 extends HashFunction {
constructor();
signedHashing(data: string): string;
signedHashing(data: string, signerPrivateKey: string): string;
nonSignedHashing(data: string): string;
}
Loading

0 comments on commit e90d799

Please sign in to comment.