oneuptime/Common/UI/Utils/JWT.ts

9 lines
213 B
TypeScript

import { JSONObject } from "Common/Types/JSON";
import { jwtDecode } from "jwt-decode";
export default class JWTToken {
public static decodeToken(token: string): JSONObject {
return jwtDecode(token);
}
}