Commit a23863a3 by Percy Quispe Huarcaya

feat: Adding token creator and a parser

parent 12311dcf
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): TokenModel; // Adjust the signature if needed
} }
\ 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