import { Algorithm } from "jsonwebtoken"; /** * Jwt Token */ export interface IJwtToken { algorithm: Algorithm; type: "Bearer" | "Apikey"; accessToken: string; expiresIn: number; }