UNPKG

@wristband/express-auth

Version:

SDK for integrating your ExpressJS application with Wristband. Handles user authentication and token management.

11 lines (10 loc) 344 B
export declare class WristbandError extends Error { private error; private errorDescription?; constructor(error: string, errorDescription?: string); getError(): string; getErrorDescription(): string | undefined; } export declare class InvalidGrantError extends WristbandError { constructor(errorDescription?: string); }