@useparagon/connect 2.4.0 → 2.4.1-experimental-19394.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -61,4 +61,13 @@ export declare class OAuthTimeoutError extends BaseSDKError {
|
|
|
61
61
|
constructor();
|
|
62
62
|
}
|
|
63
63
|
export declare function getConnectSDKError(error: unknown): ConnectSDKError;
|
|
64
|
+
export declare class ParagonError extends Error {
|
|
65
|
+
readonly code: string;
|
|
66
|
+
readonly meta?: Record<string, unknown>;
|
|
67
|
+
constructor({ message, code, meta, }: {
|
|
68
|
+
message: string;
|
|
69
|
+
code: string;
|
|
70
|
+
meta?: Record<string, unknown>;
|
|
71
|
+
});
|
|
72
|
+
}
|
|
64
73
|
export {};
|