UNPKG

@hmcts/rpx-xui-node-lib

Version:

Common nodejs library components for XUI

9 lines 278 B
/** * Simple wrapper type representing an S2S token, containing "expiresAt" (the exp value from the decoded token) and * wrapping the raw token itself. */ export interface S2SToken { expiresAt: number; token: string; } //# sourceMappingURL=s2sToken.interface.d.ts.map