UNPKG

trust-mfa-sdk

Version:

TrustJS - Blockchain-powered MFA verification SDK. Trust is the only way.

29 lines 825 B
export class TrustJSError extends Error { constructor(message: any, code?: null, details?: null); code: any; details: any; timestamp: string; toJSON(): { name: string; message: string; code: any; details: any; timestamp: string; stack: string | undefined; }; } export class ValidationError extends TrustJSError { constructor(message: any, field?: null); } export class PaymentError extends TrustJSError { constructor(message: any, paymentIntentId?: null); } export class MfaError extends TrustJSError { constructor(message: any, orderId?: null); } export class NetworkError extends TrustJSError { } export class ConfigurationError extends TrustJSError { constructor(message: any, configKey?: null); } //# sourceMappingURL=errors.d.ts.map