Speakeasy: Correct type of counter for verify options (#37055)

This commit is contained in:
Chris Northwood
2019-07-29 10:10:27 -07:00
committed by Jesse Trinity
parent 8a1b68be3a
commit 911e65400f
+2 -2
View File
@@ -209,7 +209,7 @@ export interface TotpOptions extends SharedOptions {
/**
* The counter value, calculated from time by default
*/
counter?: string;
counter?: number;
}
export interface TotpVerifyOptions extends SharedOptions {
@@ -250,7 +250,7 @@ export interface TotpVerifyOptions extends SharedOptions {
/**
* The counter value, calculated from time by default
*/
counter?: string;
counter?: number;
}
export interface OtpauthURLOptions extends SharedOptions {