UNPKG

@upv/ushi-shared

Version:

Shared DTOs, types, and utilities for the USHI platform (LMS, Trials, Social, Wallet).

11 lines (10 loc) 279 B
import { APIGatewayProxyEvent } from 'aws-lambda'; declare class Token { private _token; constructor(event: APIGatewayProxyEvent); private decode; get userId(): string; get phoneNumber(): string | null; get email(): string | null; } export default Token;