@authlink/client
Version:
Official client SDK for integrating with the Authlink Identity Provider
30 lines (29 loc) • 984 B
TypeScript
export declare class IdentityProviderError extends Error {
constructor(message: string);
}
export declare class StateMismatchError extends IdentityProviderError {
constructor();
}
export declare class SilentAuthorizationError extends IdentityProviderError {
constructor(code?: string, description?: string);
}
export declare class CodeVerifierMissingError extends IdentityProviderError {
constructor();
}
export declare class TokenExchangeError extends IdentityProviderError {
status: number;
details?: string | undefined;
constructor(status: number, details?: string | undefined);
}
export declare class NonceMissingError extends IdentityProviderError {
constructor();
}
export declare class IdTokenMissingError extends IdentityProviderError {
constructor();
}
export declare class InvalidNonceError extends IdentityProviderError {
constructor();
}
export declare class InvalidIdTokenError extends IdentityProviderError {
constructor();
}