You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
CORRESPONSALFrontend/src/Interfaces/ITokenInfo.ts

12 lines
251 B

import { SpawnSyncOptionsWithBufferEncoding } from "child_process";
export default interface ITokenInfo {
UserId: string;
Usuario: string;
aud: string;
exp: number;
iat: string;
iss: string;
jti: string;
sub: string;
}