passport-steam-openid
Version: 
Passport strategy for authenticating with steam openid without the use of 3rd party openid packages.
12 lines • 437 B
TypeScript
import { SteamOpenIdErrorType } from './type';
/**
 * Class used to distinguish between errors caused by user and internal ones.
 *
 * @class SteamOpenIdError
 * @param code can be used to see which kind of error occured programmatically.
 */
export declare class SteamOpenIdError extends Error {
    readonly code: SteamOpenIdErrorType;
    constructor(message: string, code: SteamOpenIdErrorType);
}
//# sourceMappingURL=error.d.ts.map