export type AuthError = {
    /**
     * The name of the error
     */
    error: string;
    /**
     * The contents of the error
     */
    description: string;
};
