UNPKG

@toruslabs/openlogin-jrpc

Version:

OpenLogin is a plug & play authentication suite that combines the simplicity of passwordless authentication with the security of non-custodial public key infrastructure (PKI).

11 lines (10 loc) 231 B
export default class SerializableError<T> extends Error { code: number; data: T; constructor({ code, message, data }: { code: number; message: string; data?: T; }); toString(): string; }