Skip to content

Commit

Permalink
Remove extra white space from jsdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
nflaig authored Oct 24, 2023
1 parent cc5ffe4 commit 8eb36c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/beacon-node/src/eth1/provider/jwt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import jwt from "jwt-simple";
const {encode, decode} = jwt;

/**
* jwt token has iat which is issued at unix timestamp, an optional exp for expiry,
* an optional id as unique identifier, and an optional clv for client type/version
* jwt token has iat which is issued at unix timestamp, an optional exp for expiry,
* an optional id as unique identifier, and an optional clv for client type/version
*/
export type JwtClaim = {iat: number; exp?: number; id?: string; clv?: string};

Expand Down

0 comments on commit 8eb36c6

Please sign in to comment.