import { UserTypeEnum } from '../enums/user-type.enum.js'; export interface JwtPayloadInterface { sub: string; type: UserTypeEnum; workerId: string; roles: string[]; iat?: number; exp?: number; } //# sourceMappingURL=jwt-payload.interface.d.ts.map