mirror of
https://github.com/MeowLynxSea/Proksea.git
synced 2025-07-11 03:44:39 +00:00
16 lines
620 B
TypeScript
16 lines
620 B
TypeScript
import { AuthError } from "./AuthError";
|
|
import * as JoseHeaderErrorCodes from "./JoseHeaderErrorCodes";
|
|
export { JoseHeaderErrorCodes };
|
|
export declare const JoseHeaderErrorMessages: {
|
|
missing_kid_error: string;
|
|
missing_alg_error: string;
|
|
};
|
|
/**
|
|
* Error thrown when there is an error in the client code running on the browser.
|
|
*/
|
|
export declare class JoseHeaderError extends AuthError {
|
|
constructor(errorCode: string, errorMessage?: string);
|
|
}
|
|
/** Returns JoseHeaderError object */
|
|
export declare function createJoseHeaderError(code: string): JoseHeaderError;
|
|
//# sourceMappingURL=JoseHeaderError.d.ts.map
|