UNPKG

@ne1410s/http

Version:

Lightweight ES5 script to provide http utilities

7 lines (6 loc) 231 B
import { JwtToken } from './jwt-issuer'; /** A client for consuming json web tokens. */ export declare abstract class JwtClient { /** Parses the contents of a token. */ static parse<T extends JwtToken>(token: string): T; }