Commit de7ac91a by Percy Quispe Huarcaya

feat: Adding token creator and a parser

parent a23863a3
import { JwtPayload } from "jsonwebtoken";
declare module 'security-ndjs-lib' { declare module 'security-ndjs-lib' {
export function createJWT(id: string, subject: object, time?: number): string; export function createJWT(id: string, subject: object, time?: number): string;
export function parseJWT(token?: string, id?: string): TokenModel; // Adjust the signature if needed export function parseJWT(token?: string, id?: string): JwtPayload; // Adjust the signature if needed
} }
\ No newline at end of file
interface TokenModel {
id: string;
issuedAt: number;
subject: object;
issuer: string;
iat: number;
exp: number;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment