UNPKG

@thisisagile/easy

Version:

Straightforward library for building domain-driven microservice architectures

10 lines (9 loc) 222 B
import { Json } from '../types/Json'; import { Value } from "../types/Value"; export declare class Jwt extends Value { static of: (a: { jwt: string; }) => Jwt; decode: () => Json; toJSON(): Json; }