Speakeasy: added "digits" property to the TotpOptions interface.

This commit is contained in:
Alexander Batukhtin
2017-03-17 20:13:28 +03:00
parent c8190f4e64
commit ebd423cc3d

View File

@@ -49,6 +49,7 @@ interface TotpOptions {
counter?: number;
epoch?: number;
secret?: string;
digits?: number;
digest?: () => string;
algorithm?: string;
}