Skip to content

Commit

Permalink
Fix tslint error
Browse files Browse the repository at this point in the history
  • Loading branch information
microshine committed Feb 19, 2019
1 parent 7dd31b6 commit 93459eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sym_ratchet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export interface IJsonSymmetricRatchet {
export abstract class SymmetricRatchet implements IJsonSerializable {

public static async fromJSON<T extends SymmetricRatchet>(
this: { new (rootKey: CryptoKey): T },
this: new (rootKey: CryptoKey) => T,
obj: IJsonSymmetricRatchet,
) {
const res = new this(obj.rootKey);
Expand Down

0 comments on commit 93459eb

Please sign in to comment.