@kiryano/etherealotp
Version:
A library for two-factor authentication using Twilio and Speakeasy.
13 lines (12 loc) • 326 B
TypeScript
/**
* Represents errors related to token generation failures.
*/
export declare class TokenGenerationError extends Error {
constructor(message: string);
}
/**
* Represents errors related to token verification failures.
*/
export declare class TokenVerificationError extends Error {
constructor(message: string);
}