Commit 84e9fb8d by Percy Quispe Huarcaya

feat: Adding token creator and a parser

parent 18cb75c3
{ {
"name": "security-ndjs-lib", "name": "@types/security-ndjs-lib",
"version": "1.0.0", "version": "1.0.0",
"description": "Library to manage tokens using js", "description": "Library to manage tokens using js",
"main": "index.js",
"types": "src/@types/security-ndjs-lib/index.d.ts",
"scripts": { "scripts": {
"test": "jest" "test": "jest"
}, },
......
declare module 'util/token' { declare module 'src/util/token' {
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): string; // Adjust the signature if needed export function parseJWT(token: string, id?: string): string; // 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